Back to Devexpress

DockLayoutManager.AutoHideGroups Property

wpf-devexpress-dot-xpf-dot-docking-dot-docklayoutmanager-b0b405bb.md

latest4.9 KB
Original Source

DockLayoutManager.AutoHideGroups Property

A collection of AutoHideGroup objects.

Namespace : DevExpress.Xpf.Docking

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

NuGet Package : DevExpress.Wpf.Docking

Declaration

csharp
public AutoHideGroupCollection AutoHideGroups { get; }
vb
Public ReadOnly Property AutoHideGroups As AutoHideGroupCollection

Property Value

TypeDescription
AutoHideGroupCollection

A collection of AutoHideGroup objects that contains auto-hidden panels.

|

Remarks

Follow the steps below to create an auto-hidden panel in XAML:

  1. Add a AutoHideGroup object to the AutoHideGroups collection.
  2. Add a panel(s) to the created AutoHideGroup.

Note

Use the AutoHideGroup.DockType property to specify the DockLayoutManager‘s side where an auto-hidden group is docked.

Example

This example shows how to create auto-hidden panels in XAML. To create auto-hidden panels:

  1. AutoHideGroup objects are added to the DockLayoutManager.AutoHideGroups collection.

  2. Panels are added to the corresponding AutoHideGroup object.

View Example

xaml
<dxdo:DockLayoutManager.AutoHideGroups>
    <!--Create one AutoHideGroup on the right-->
    <dxdo:AutoHideGroup DockType="Right">
        <dxdo:LayoutPanel x:Name="paneProperties" Caption="Properties" ItemWidth="150">
            <RichTextBox />
        </dxdo:LayoutPanel>
        <dxdo:LayoutPanel x:Name="paneMessages" Caption="Messages" ItemWidth="150">
            <RichTextBox />
        </dxdo:LayoutPanel>
    </dxdo:AutoHideGroup>
    <!--Create two AutoHideGroups on the left-->
    <dxdo:AutoHideGroup DockType="Left">
        <dxdo:LayoutPanel x:Name="paneErrors" Caption="Errors" ItemWidth="150">
            <RichTextBox />
        </dxdo:LayoutPanel>
        <dxdo:LayoutPanel x:Name="paneWarnings" Caption="Warnings" ItemWidth="150">
            <RichTextBox />
        </dxdo:LayoutPanel>
    </dxdo:AutoHideGroup>

    <dxdo:AutoHideGroup DockType="Left">
        <dxdo:LayoutPanel x:Name="paneFindResults" Caption="Find Results" ItemWidth="150">
            <RichTextBox />
        </dxdo:LayoutPanel>
    </dxdo:AutoHideGroup>
</dxdo:DockLayoutManager.AutoHideGroups>

The following code snippets (auto-collected from DevExpress Examples) contain references to the AutoHideGroups 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.

wpf-scheduler-use-entity-framework-to-bind-to-data/CS/DXSample/MainWindow.xaml#L29

xml
</dxdo:LayoutGroup>
<dxdo:DockLayoutManager.AutoHideGroups>
    <dxdo:AutoHideGroup DockType="Right">

wpf-dock-layout-manager-pin-unpin-layout-panels-in-mvvm/CS/MainWindow.xaml#L27

xml
</dxdo:DockLayoutManager.LayoutRoot>
<dxdo:DockLayoutManager.AutoHideGroups>
    <dxdo:AutoHideGroup DockType="Right" Name="auotHideGroup"/>

wpf-scheduler-disable-resource-colorization/CS/DXSample/MainWindow.xaml#L41

xml
</dxdo:LayoutGroup>
<dxdo:DockLayoutManager.AutoHideGroups>
    <dxdo:AutoHideGroup DockType="Right">

See Also

DockLayoutManager Class

DockLayoutManager Members

DevExpress.Xpf.Docking Namespace