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

FloatGroup.FloatState Attached Property

Gets or sets whether the panel is in the normal, maximized or minimized state. This is an attached property.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v19.1.dll

Declaration

Returns

Type Description
DevExpress.Xpf.Docking.FloatState

A DevExpress.Xpf.Docking.FloatState enumeration value that specifies whether the panel is in the normal, maximized or minimized state.

Remarks

When floating, the LayoutPanel displays the minimize, maximize and restore buttons that allows an end-user to manipulate the state of the panel. The FloatState property specifies the actual state of the panel. The code snippet below shows how to attach the FloatState property to the LayoutPanel object.

xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking"

<dxdo:DockLayoutManager.FloatGroups>
    <dxdo:FloatGroup>
        <dxdo:LayoutPanel Caption="Panel1" dxdo:FloatGroup.FloatState="Minimized"/>
    </dxdo:FloatGroup>
</dxdo:DockLayoutManager.FloatGroups>
See Also