ComponentOne DataGrid for WPF and Silverlight
FilterChanged Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : FilterChanged Event
Occurs after the filtering state changed.
Syntax
'Declaration
 
Public Event FilterChanged As System.EventHandler(Of DataGridFilterChangedEventArgs)
public event System.EventHandler<DataGridFilterChangedEventArgs> FilterChanged
Event Data

The event handler receives an argument of type DataGridFilterChangedEventArgs containing data related to this event. The following DataGridFilterChangedEventArgs properties provide information specific to this event.

PropertyDescription
Gets currently filtered columns.  
Gets previously filtered columns.  
Remarks
Filtering state changes when user manipulates the filter included in the column header or when the FilterBy method is called.
See Also