Occurs after grid's selection has been changed.
Namespace:DevExpress.Xpf.Grid
Assembly:DevExpress.Xpf.Grid.v17.2.dll
Note: This API is now obsolete.
Use the GridControl.SelectionChanged event instead

Syntax
C# |
public event GridSelectionChangedEventHandler SelectionChanged
|
VB |
event Public SelectionChanged As GridSelectionChangedEventHandler
|

Event Data
The event handler receives an argument of type GridSelectionChangedEventArgs containing data related to this event.
The following
GridSelectionChangedEventArgs properties provide information specific to this event.
Property |
Description |
Action |
Gets an action which indicates how the grid's selection has been changed.
|
ControllerRow |
Identifies the row whose selected state has been changed.
|
Handled |
Gets or sets a value that indicates the present state of the event handling for a routed event as it travels the route. |
OriginalSource |
Gets the original reporting source as determined by pure hit testing, before any possible System.Windows.RoutedEventArgs.Source adjustment by a parent class. |
RoutedEvent |
Gets or sets the System.Windows.RoutedEventArgs.RoutedEvent associated with this System.Windows.RoutedEventArgs instance. |
Source |
Gets the View that raised the event.
|

Remarks
Each time the grid's selection is changed, the SelectionChanged event is raised. The event parameter's GridSelectionChangedEventArgs.Action property indicates how the grid's selection has been changed. The GridSelectionChangedEventArgs.ControllerRow property returns the handle of a data row whose selected state has been changed.
The SelectionChanged event isn't fired if the DataControlBase.SelectionMode property is set to TableViewSelectMode.None.
To learn more, see Multiple Row Selection.

See Also