Skip to main content

TabView Class

A view that organizes content into groups at the same hierarchy level and allows tab navigation between them.

Namespace: DevExpress.Maui.Controls

Assembly: DevExpress.Maui.Controls.dll

NuGet Package: DevExpress.Maui.Controls

Declaration

[ContentProperty("Items")]
public class TabView :
    View,
    IDXViewController,
    IAppearanceOwner,
    IVisualTreeElement

Remarks

The TabView component allows you to implement tab navigation through a collection of views (tab items) in a .NET MAUI application. A tab item has a header displayed within the header panel and a view displayed in the content area when a user selects an item. To navigate between tab items, a user can tap tab item headers or swipe left or right within the content area.

TabView - Elements

For more information about the TabView control, refer to the following help topics:

Overview
Contains basic information about TabView.
Create Tab Items Manually
Shows how to populate the TabView.Items collection with TabViewItem objects and customize each tab item appearance.
Generate Tab Items from a Data Source
Shows how to generate tab items from a data source assigned to the TabView.ItemsSource property.
Tab View Elements
Describes how to customize Tab View elements.
See Also