Back to Devexpress

TabControlViewBase.HeaderLocation Property

wpf-devexpress-dot-xpf-dot-core-dot-tabcontrolviewbase-7d22a996.md

latest2.6 KB
Original Source

TabControlViewBase.HeaderLocation Property

Gets or sets the location of the Header Panel, relative to the tab item. This is a dependency property.

Namespace : DevExpress.Xpf.Core

Assembly : DevExpress.Xpf.Core.v25.2.dll

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public HeaderLocation HeaderLocation { get; set; }
vb
Public Property HeaderLocation As HeaderLocation

Property Value

TypeDescription
HeaderLocation

One of the HeaderLocation enumeration members, defining the location of the Header Panel.

|

Available values:

NameDescription
None

The Header Panel is not displayed.

| | Left |

The Header Panel is located on the left side of the tab item.

| | Top |

The Header Panel is located at the top of the tab item.

| | Right |

The Header Panel is located on the right side of the tab item.

| | Bottom |

The Header Panel is located at the bottom of the tab item.

|

Remarks

The Header Panel can be located in the following ways:

  • on the left side of the tab item

  • on the right side of the tab item

  • at the bottom of the tab item

  • at the top of the tab item

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HeaderLocation property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

mvvm-application-with-wpf-bars/CS/Step 4 - building views/MainPage.xaml#L20

xml
<dx:DXTabControl.View>
    <dx:TabControlMultiLineView HeaderLocation="Bottom"/>
</dx:DXTabControl.View>

See Also

TabControlViewBase Class

TabControlViewBase Members

DevExpress.Xpf.Core Namespace