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

DocumentGroup.TabbedGroupDisplayMode Property

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
TabbedGroupDisplayMode

A TabbedGroupDisplayMode enumeration value.

Available values:

Name Description
Default

Displays DocumentPanel headers and borders.

TabbedGroupDisplayMode-Default

ContentOnly

Hides DocumentPanel headers and borders.

TabbedGroupDisplayMode-ContentOnly

#Remarks

When TabbedGroupDisplayMode is TabbedGroupDisplayModeContentOnly, you can use the Document Selector to switch between DocumentGroup panels:

TabbedGroupDisplayMode ContentOnly Document Selector

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>

TabbedGroupDisplayMode-ContentOnly

See Also