ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / C1DataGrid Class / SelectionChanged Event

In This Topic
    SelectionChanged Event (C1DataGrid)
    In This Topic
    Occurs when the SelectedItem or SelectedItems property value changes.
    Syntax
    'Declaration
     
    
    Public Event SelectionChanged As EventHandler(Of DataGridSelectionChangedEventArgs)
    public event EventHandler<DataGridSelectionChangedEventArgs> SelectionChanged
    Event Data

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

    PropertyDescription
    Gets the ranges that has been added to the selection.  
    Gets the ranges that has been removed from the selection.  
    See Also