Skip to main content

DockLayoutManager.AutoHideGroups Property

Provides access to the collection of AutoHideGroup objects, containing auto-hidden panels. Allows you to create auto-hidden panels in XAML.

Namespace: DevExpress.Xpf.Docking

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

#Declaration

public AutoHideGroupCollection AutoHideGroups { get; }

#Property Value

Type Description
AutoHideGroupCollection

A AutoHideGroupCollection collection of AutoHideGroup objects, containing auto-hidden panels.

#Remarks

In XAML, you can create an auto-hidden panel as follows:

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

To specify where an auto-hidden group is docked, use the AutoHideGroup.DockType property.

#Examples

See Also