DataGrid.RowEditEnding Event

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Occurs when a row edit is ending.

Namespace:  System.Windows.Controls
Assembly:  System.Windows.Controls.Data (in System.Windows.Controls.Data.dll)

Syntax

'Declaration
Public Event RowEditEnding As EventHandler(Of DataGridRowEditEndingEventArgs)
public event EventHandler<DataGridRowEditEndingEventArgs> RowEditEnding

Remarks

You can cancel this event by setting the Cancel property of the e argument to true in the event handler.

If this event is not canceled, the specified EditAction will be performed to commit or cancel the edit. After the edit has been successfully committed or canceled, the RowEditEnded event occurs.

By default, you can edit items directly in the DataGrid. To guarantee that edits can be committed and canceled correctly, the objects in the DataGrid must implement the IEditableObject interface. Alternatively, you can set the IsReadOnly property to true to disable editing in the DataGrid.

#XAML Attribute Usage

<sdk:DataGrid RowEditEnding="eventHandler"/>

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.