Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeListView.NodeChanged Event

Occurs when a node’s property changes.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public event TreeListNodeChangedEventHandler NodeChanged

#Event Data

The NodeChanged event's data class is TreeListNodeChangedEventArgs. The following properties provide information specific to this event:

Property Description
ChangeType Gets the way in which the node has changed.
Node Gets the changed node.

#Remarks

The GridControl raises the NodeChanged event each time a node property changes. Use the TreeListNodeChangedEventArgs.ChangeType property to identify node changes. The TreeListNodeChangedEventArgs.Node property returns the processed node.

If you want to maintain a clean MVVM pattern and process node property changes in a View Model, create a command and bind it to the NodeChangedCommand property.

See Also