LayoutController Class
Represents the object that provides methods to manage the layout of items.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v24.1.dll
NuGet Package: DevExpress.Wpf.Docking
Declaration
Remarks
Use the DockLayoutManager.LayoutController property to access a LayoutController object, which provides methods to customize the layout of items. These methods allow you to hide, restore, move layout items and access hidden items.
Example
This example shows how to programmatically move a layout item to another position. To move layout items, the LayoutController.Move method is used.
In the example, an item is moved on the left of another item.
dockLayoutManager1.LayoutController.Move(layoutItemEditor1, layoutItemButton1, MoveType.Left)
Inheritance
Object
LayoutController
See Also