Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

C#
[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