//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// Event args for sorting event on datagrid /// public class DataGridSortingEventArgs : DataGridColumnEventArgs { public DataGridSortingEventArgs(DataGridColumn column) : base(column) { } /// /// To indicate that the sort has been handled /// public bool Handled { get { return _handled; } set { _handled = value; } } private bool _handled = false; } }