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<System.Object>. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| NewValue | Gets the new value. |
| OldValue | Gets the old value. |
Remarks
For more information, refer to the following help topic: Respond to Selection Changes.
See Also