DataGrid.BeginningEdit Event

Definition

Occurs before a row or cell enters edit mode.

public:
 event EventHandler<System::Windows::Controls::DataGridBeginningEditEventArgs ^> ^ BeginningEdit;
public event EventHandler<System.Windows.Controls.DataGridBeginningEditEventArgs> BeginningEdit;
member this.BeginningEdit : EventHandler<System.Windows.Controls.DataGridBeginningEditEventArgs> 
Public Custom Event BeginningEdit As EventHandler(Of DataGridBeginningEditEventArgs) 
Public Event BeginningEdit As EventHandler(Of DataGridBeginningEditEventArgs) 

Event Type

Remarks

This event lets you perform special processing before a cell or row enters edit mode. Additionally, this event provides information about the keyboard or mouse gesture that was used to enter editing mode, and gives you the option of canceling edit mode.

If this event is not canceled, the PreparingCellForEdit event is raised when this event completes.

Applies to