Back to Devexpress

TreeListView.NodeCanceledCommand Property

wpf-devexpress-dot-xpf-dot-grid-dot-treelistview-5dc568b0.md

latest2.2 KB
Original Source

TreeListView.NodeCanceledCommand Property

Gets or sets a command executed when the changes made in a node are discarded.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public ICommand<NodeCanceledArgs> NodeCanceledCommand { get; set; }
vb
Public Property NodeCanceledCommand As ICommand(Of NodeCanceledArgs)

Property Value

TypeDescription
ICommand<NodeCanceledArgs>

A command executed when the changes made in a node are discarded.

|

Remarks

Bind a command to the NodeCanceledCommand property to maintain a clean MVVM pattern. The command works like a NodeCanceled event handler and allows you to process the node edit discard operation in a View Model.

You can discard changes made within a node while it has focus. The GridControl updates the data source when focus moves to another node.

Press ESC twice to discard changes. Press ESC the first time to close the editor and discard all changes made in the current cell. Then press ESC again to call the IEditableObject.CancelEdit method that discards changes made in other cells of the focused node.

The bound command is called when you press ESC the second time.

Note

If a data item class does not implement the IEditableObject interface, you can discard changes only in the focused cell.

Refer to the following topic if you want to cancel changes made within a row asynchronously: ResultAsync.

See Also

TreeListView Class

TreeListView Members

DevExpress.Xpf.Grid Namespace