ComponentOne DataGrid for WPF and Silverlight
GroupChanged Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : GroupChanged Event
Occurs after the grouping state changed.
Syntax
'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.

PropertyDescription
Gets currently grouped columns.  
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