DevExpress Tree View for .NET MAUI
The DevExpress Mobile UI for .NET MAUI suite contains the DXTreeView component that allows you to display hierarchical data items.

Tree View Elements (Anatomy)
The following figure shows basic elements of a Tree View:

Add a Tree View to a Page
Download and install the DevExpress.Maui.TreeView package to obtain the DXTreeView component.
Refer to the following help topics for additional information:
- Install Packages from NuGet.org: Visual Studio, VS Code, and JetBrains Rider
- Get Started with DevExpress Controls for .NET Multi-platform App UI (.NET MAUI)
<ContentPage ...
xmlns:dx="http://schemas.devexpress.com/maui"
xmlns:local="clr-namespace:TreeViewExample">
<ContentPage.BindingContext>
<local:ViewModel/>
</ContentPage.BindingContext>
<dx:DXTreeView ItemsSource="{Binding Data}">
...
</dx:DXTreeView>
</ContentPage>
Next Steps
- Display Hierarchical Data
- Describes how to populate a Tree View with items.
- Filter and Sort Data
- Explains how to shape Tree View item data.
- Collapse and Expand Nodes
- Explains how to collapse and expand Tree View nodes.
- Swipe Gestures
- Explains how to show swipe elements and perform custom actions when a user swipes a Tree View node.
- Customize Appearance
- Lists API members that you can use to change the appearance and layout of the DXTreeView control and its items.