ComponentOne DataGrid for WPF and Silverlight
CurrentCellChanged Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : CurrentCellChanged Event
Occurs when a different cell becomes the current cell. Typically this occurs when a user clicks a cell, but it can be set programmatically too by setting CurrentRow and CurrentColumn.
Syntax
'Declaration
 
Public Event CurrentCellChanged As System.EventHandler(Of DataGridCellEventArgs)
public event System.EventHandler<DataGridCellEventArgs> CurrentCellChanged
Event Data

The event handler receives an argument of type DataGridCellEventArgs containing data related to this event. The following DataGridCellEventArgs properties provide information specific to this event.

PropertyDescription
Gets the cell.  
See Also