DockLayoutManager.FloatGroups Property
In This Article
Provides access to floating groups of panels. Allows you to create floating panels in XAML.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Float |
A Float |
#Remarks
In XAML, you can create a floating panel as follows:
- Add a FloatGroup object to the FloatGroups collection.
- Add a panel(s) to the created FloatGroup.
- Set the size for the created FloatGroup object via the BaseLayoutItem.FloatSize property.
To specify the position for the FloatGroup, use the FloatGroup.FloatLocation property.
To make a panel floating in code, use the DockController.Float method provided by the DockLayoutManager.DockController object.
#Examples
See Also