Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Wpf.Docking

Declaration

public AutoHideMode AutoHideMode { get; set; }

Property Value

Type Description
AutoHideMode

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

Available values:

Name Description
Default

The same as Overlay.

Inline

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

DockLayoutManager_AutoHideMode_Inline

Overlay

The expanded auto-hidden panels overlay other panels.

DockLayoutManager_AutoHideMode_Overlay

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.

See Also