Skip to main content
A newer version of this page is available. .

DocumentGroup.ShowDropDownButton Property

Gets or sets whether the drop-down button is visible within the current DocumentGroup.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v19.2.dll

Declaration

public bool ShowDropDownButton { get; set; }

Property Value

Type Description
Boolean

true if the drop-down button is visible within the current DocumentGroup; otherwise, false.

Remarks

Click the drop-down button to display a popup list of DocumentPanel objects in the current DocumentGroup. An end user can click items in this list to switch between DocumentPanels:

DockLayoutManager - DocumentGroup - ShowDropDownButton Property

<Window ...
  xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking">
  <dxdo:DockLayoutManager>
    <dxdo:LayoutGroup>
      <dxdo:DocumentGroup MDIStyle="Tabbed" ShowDropDownButton="True">
        <dxdo:DocumentPanel"/>
        <dxdo:DocumentPanel"/>
      </dxdo:DocumentGroup>
    </dxdo:LayoutGroup>
  </dxdo:DockLayoutManager>
</Window>

Note

The drop-down button can be displayed only if the DocumentGroup.MDIStyle property is MDIStyle.Tabbed.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowDropDownButton 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.

See Also