DocumentGroup.TabbedGroupDisplayMode Property
In This Article
Contains values that specify the DocumentPanel header display mode.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v24.2.dll
NuGet Package: DevExpress.Wpf.Docking
#Declaration
public TabbedGroupDisplayMode TabbedGroupDisplayMode { get; set; }
#Property Value
Type | Description |
---|---|
Tabbed |
A Tabbed |
Available values:
Name | Description |
---|---|
Default | Displays Document |
Content |
Hides Document |
#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