DataGridView.SelectionChanged Event
Occurs after the selected row has been changed in the grid.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
Declaration
public event SelectionChangedEventHandler SelectionChanged
Event Data
The SelectionChanged event's data class is SelectionChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Item | |
RowHandle | Gets the grid’s row handle. Inherited from RowEventArgs. |
Remarks
When a user taps a data row in the grid, this row becomes selected.
To prevent users from selecting rows, set the SelectionMode property to SelectionMode.None.
See Also