DXTreeView.SelectedItemChanged Event
Fires when the selected item is changed.
Namespace: DevExpress.Maui.TreeView
Assembly: DevExpress.Maui.TreeView.dll
NuGet Package: DevExpress.Maui.TreeView
Declaration
public event EventHandler<ValueChangedEventArgs<object>> SelectedItemChanged
Event Data
The SelectedItemChanged event's data class is ValueChangedEventArgs<Object>. The following properties provide information specific to this event:
Property | Description |
---|---|
NewValue | Gets the new value of a property. |
OldValue | Gets the old value of a property. |
Remarks
For more information, refer to the following help topic: Respond to Selection Changes.
See Also