DataGrid::SelectedCellsChanged Event
.NET Framework (current version)
Occurs when the SelectedCells collection changes.
Assembly: PresentationFramework (in PresentationFramework.dll)
You can handle the SelectedCellsChanged event to be notified when the collection of selected cells is changed. If the selection includes full rows, the Selector::SelectionChanged event is also raised.
You can retrieve the AddedCells and RemovedCells from the SelectedCellsChangedEventArgs in the event handler.
The following example shows how to handle the SelectedCellsChanged event and clear the values in the newly selected cells.
<Grid> <DataGrid Name="DG1" ItemsSource="{Binding}" SelectionUnit="CellOrRowHeader" SelectionChanged="DG1_SelectionChanged" SelectedCellsChanged="DG1_SelectedCellsChanged" /> </Grid>
.NET Framework
Available since 4.0
Available since 4.0
Show: