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.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

Declaration

public event EventHandler<SelectionChangedEventArgs> SelectionChanged

Event Data

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

Property
Item
RowHandle

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