DataGrid.SelectedCellsChanged Event
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>
Private Sub DG1_SelectedCellsChanged(ByVal sender As Object, ByVal e As SelectedCellsChangedEventArgs) 'Get the newly selected cells Dim selectedcells As IList(Of DataGridCellInfo) = e.AddedCells 'Get the value of each newly selected cell For Each di As DataGridCellInfo In selectedcells 'Cast the DataGridCellInfo.Item to the source object type 'In this case the ItemsSource is a DataTable and individual items are DataRows Dim dvr As DataRowView = DirectCast(di.Item, DataRowView) 'Clear values for all newly selected cells Dim cr As AdventureWorksLT2008DataSet.CustomerRow = DirectCast(dvr.Row, AdventureWorksLT2008DataSet.CustomerRow) cr.BeginEdit() cr.SetField(di.Column.DisplayIndex, "") cr.EndEdit() Next End Sub
Available since 4.0