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

LayoutPanel.AutoHidden Property

Gets or sets whether the panel is currently auto-hidden. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Docking, DevExpress.Wpf.Navigation

Declaration

public bool AutoHidden { get; set; }

Property Value

Type Description
Boolean

true, if the panel is currently auto-hidden; otherwise, false. The default is false.

Remarks

The AutoHidden property specifies whether the panel is currently auto-hidden. You can use this property to specify the initial state of the panel or make it auto-hidden in code. At run-time, an auto-hidden panel is expanded when clicked or hovered over with the mouse pointer (see DockLayoutManager.AutoHideExpandMode). The DockLayoutManager.AutoHideMode property allows you to specify whether the panel, when expanded, overlays other panels or is displayed in-line between them.

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