'Declaration
Public Event GroupChanged As System.EventHandler(Of DataGridGroupChangedEventArgs)
public event System.EventHandler<DataGridGroupChangedEventArgs> GroupChanged
Event Data
The event handler receives an argument of type DataGridGroupChangedEventArgs containing data related to this event. The following DataGridGroupChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
NewGroupedColumns | Gets currently grouped columns. |
OldGroupedColumns | Gets previously grouped columns. |
Remarks
Grouping state changes when user drag a column on the grouping panel or when the GroupBy method is called.
See Also