Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.

DXTreeView.CheckBoxStateChanged Event

Occurs after a user changed the tree node checkbox state.

Namespace: DevExpress.Maui.TreeView

Assembly: DevExpress.Maui.TreeView.dll

Declaration

public event EventHandler<TreeNodeCheckBoxStateChangedEventArgs> CheckBoxStateChanged

Event Data

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

Property Description
NewState Gets a new state of the checkbox.
Node Get the node of the tapped item. Inherited from TreeNodeEventArgs.
OldState Gets an old state of the checkbox.
See Also