Back to Devexpress

GridViewBase.SelectionChanged Event

wpf-devexpress-dot-xpf-dot-grid-dot-gridviewbase-2555c2f4.md

latest5.1 KB
Original Source

GridViewBase.SelectionChanged Event

OBSOLETE

Use the SelectionChanged event instead

Occurs after grid’s selection has been changed.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
[Obsolete("Use the GridControl.SelectionChanged event instead")]
[Browsable(false)]
public event GridSelectionChangedEventHandler SelectionChanged
vb
<Obsolete("Use the GridControl.SelectionChanged event instead")>
<Browsable(False)>
Public Event SelectionChanged As GridSelectionChangedEventHandler

Event Data

The SelectionChanged event's data class is GridSelectionChangedEventArgs. The following properties provide information specific to this event:

PropertyDescription
ActionGets an action which indicates how the grid’s selection has been changed.
ControllerRowIdentifies the row whose selected state has been changed.
HandledGets or sets a value that indicates the present state of the event handling for a routed event as it travels the route. Inherited from RoutedEventArgs.
OriginalSourceGets the original reporting source as determined by pure hit testing, before any possible Source adjustment by a parent class. Inherited from RoutedEventArgs.
RoutedEventGets or sets the RoutedEvent associated with this RoutedEventArgs instance. Inherited from RoutedEventArgs.
SourceGets the View that raised the event.

The event data class exposes the following methods:

MethodDescription
InvokeEventHandler(Delegate, Object)When overridden in a derived class, provides a way to invoke event handlers in a type-specific way, which can increase efficiency over the base implementation. Inherited from RoutedEventArgs.
OnSetSource(Object)When overridden in a derived class, provides a notification callback entry point whenever the value of the Source property of an instance changes. Inherited from RoutedEventArgs.

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

GridViewBase Class

GridViewBase Members

DevExpress.Xpf.Grid Namespace