DocumentGroup.TabbedGroupDisplayMode Property
Contains values that specify the DocumentPanel header display mode.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v24.1.dll
NuGet Package: DevExpress.Wpf.Docking
Declaration
Property Value
Type | Description |
---|---|
TabbedGroupDisplayMode | A TabbedGroupDisplayMode enumeration value. |
Available values:
Name | Description |
---|---|
Default | Displays DocumentPanel headers and borders. |
ContentOnly | Hides DocumentPanel headers and borders. |
Remarks
When TabbedGroupDisplayMode is TabbedGroupDisplayModeContentOnly, you can use the Document Selector to switch between DocumentGroup panels:
The following code sample sets the TabbedGroupDisplayMode property to TabbedGroupDisplayModeContentOnly:
<dx:ThemedWindow
...
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking">
<dxdo:DockLayoutManager>
<dxdo:LayoutGroup>
<dxdo:DocumentGroup TabbedGroupDisplayMode="ContentOnly">
<dxdo:DocumentPanel/>
<dxdo:DocumentPanel/>
</dxdo:DocumentGroup>
</dxdo:LayoutGroup>
</dxdo:DockLayoutManager>
</dx:ThemedWindow>
See Also