Occurs when a cell in a DataGridTemplateColumn enters editing mode.
Public Event PreparingCellForEdit As EventHandler(Of DataGridPreparingCellForEditEventArgs)
Dim instance As DataGrid Dim handler As EventHandler(Of DataGridPreparingCellForEditEventArgs) AddHandler instance.PreparingCellForEdit, handler
public event EventHandler<DataGridPreparingCellForEditEventArgs> PreparingCellForEdit
<data:DataGrid PreparingCellForEdit="eventhandler"/>
A prefix that is defined to map the XML namespace for the System.Windows.Controls.Data assembly and the System.Windows.Controls CLR namespace.
You can handle this event to respond to a user who is attempting to edit a cell in a DataGridTemplateColumn. This event does not occur for cells in other column types. If the user attempts to edit a cell in other columns derived from DataGridColumn, the DataGrid control calls the column's PrepareCellForEdit method.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.