Back to Devexpress

DockLayoutManager.AutoHideMode Property

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

latest3.4 KB
Original Source

DockLayoutManager.AutoHideMode Property

Gets or sets the mode that specifies how auto-hidden panels are displayed relative to other panels when expanded. This is a dependency property.

Namespace : DevExpress.Xpf.Docking

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

NuGet Package : DevExpress.Wpf.Docking

Declaration

csharp
public AutoHideMode AutoHideMode { get; set; }
vb
Public Property AutoHideMode As AutoHideMode

Property Value

TypeDescription
AutoHideMode

An AutoHideMode enumeration value that specifies how auto-hidden panels are displayed relative to other panels when expanded.

|

Available values:

NameDescription
Default

The same as Overlay.

| | Inline |

The expanded auto-hidden panels are displayed in-line between other panels.

| | Overlay |

The expanded auto-hidden panels overlay other panels.

|

Remarks

Note

When the property is Inline, auto-hidden panels stay visible even if the mouse pointer is not above them.

Tip

You can use the AutoHideExpandMode property to specify how an auto-hidden panel is expanded.

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

xml
<dxr:RibbonStatusBarControl DockPanel.Dock="Bottom"/>
<dxdo:DockLayoutManager AutoHideMode="Inline">
    <dxdo:LayoutGroup>

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

xml
</dxr:RibbonControl>
<dxdo:DockLayoutManager AutoHideMode="Inline">
    <dxdo:LayoutGroup>

See Also

AutoHideExpandMode

DockLayoutManager Class

DockLayoutManager Members

DevExpress.Xpf.Docking Namespace