Skip to main content

DXTreeView.CheckBoxStateChanged Event

Occurs after a user changed the tree node checkbox state.

Namespace: DevExpress.Maui.TreeView

Assembly: DevExpress.Maui.TreeView.dll

NuGet Package: DevExpress.Maui.TreeView

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