Skip to main content
A newer version of this page is available. .

DataGridView.SelectionChanged Event

Occurs after the selected row has been changed in the grid.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

Declaration

public event RowEventHandler SelectionChanged

Event Data

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

Property Description
RowHandle Gets the grid’s row handle.

Remarks

When a user taps a data row in the grid, this row becomes selected.

Grid Data Rows

To prevent users from selecting rows, set the SelectionMode property to SelectionMode.None.

See Also