DataGrid Editing Events
With support for explicit binding, Silverlight 3 supports the DataGrid editing events CellEditEnding, CellEditEnded, RowEditEnding, and RowEditEnded. With the use of these events, DataGrid can properly raise cancellable editing events and ended notifications, as in the following code snippet:
public event EventHandler<DataGridCellEditEndingEventArgs>
CellEditEnding; public event EventHandler<DataGridCellEditEndedEventArgs> CellEditEnded;
public event EventHandler<DataGridRowEditEndingEventArgs> RowEditEnding;
public event EventHandler<DataGridRowEditEndedEventArgs> RowEditEnded;
Post a comment