DockLayoutManager.MDIController Property
Gets the controller that provides methods to perform operations on MDI panels.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v24.1.dll
NuGet Package: DevExpress.Wpf.Docking
Declaration
Property Value
Type | Description |
---|---|
IMDIController | A DevExpress.Xpf.Docking.MDIController object that provides methods to perform operations on MDI panels. |
Remarks
A DocumentGroup supports MDI mode for its child panels. Use the DocumentGroup.MDIStyle property to enable MDI mode.
The MDIController object contains methods to work with MDI panels.
The following code sample aligns the DocumentGroup‘s child items vertically:
<dxdo:DockLayoutManager x:Name="DockLayoutManager1" >
<dxdo:LayoutGroup>
<dxdo:DocumentGroup MDIStyle="MDI" x:Name="DocumentGroup1">
<dxdo:DocumentPanel/>
<dxdo:DocumentPanel/>
</dxdo:DocumentGroup>
</dxdo:LayoutGroup>
</dxdo:DockLayoutManager>
See Also