Skip to main content
All docs
V26.1
  • 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.

    DevExpress Tree View for MAUI - Preview

    View Example: DevExpress Tree View for .NET MAUI

    Tree View Elements (Anatomy)

    The following figure shows basic elements of a Tree View:

    DevExpress Tree View for MAUI - Anatomy

    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:

    <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.