Back to Devexpress

Views Overview

wpf-113984-controls-and-libraries-layout-management-tab-control-fundamentals-views-views-overview.md

latest1.8 KB
Original Source

Views Overview

  • May 21, 2025

The tab control’s layout, style and behavior settings are defined by View objects that are represented by the TabControlViewBase descendant classes. Each View has its own layout and behavior.

Common Functionality

The TabControlViewBase class provides basic functionality that is common for all views.

  • Customizing Header Location

  • Header Menu

  • Hide and New Buttons

TabControlViewBase descendants

There are three types of TabControlViewBase descendant classes.

View Applying

To apply a view to the tab control, use the DXTabControl.View property. See the example below.

xaml
<dx:DXTabControl>
    <dx:DXTabControl.View>
        <dx:TabControlMultiLineView/>
    </dx:DXTabControl.View>
</dx:DXTabControl>

See Also

MultiLine View

Scroll View

Stretch View