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

TreeList.NodeChanged Event

Fires after the node’s property has changed.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

[DXCategory("Property Changed")]
public event NodeChangedEventHandler NodeChanged

#Event Data

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

Property Description
ChangeType Gets the way the node has been changed.
Node Gets the current Tree List node. Inherited from NodeEventArgs.
NodeCollection Gets the collection that contains the current node.

#Remarks

The NodeChanged event is raised when a node property changes. The node whose properties have changed is identified by the event parameter’s NodeEventArgs.Node property. The NodeChangedEventArgs.ChangeType parameter lets you identify the way the node has changed.

See Also