Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DockLayoutManager.MDIController Property

Gets the controller that provides methods to perform operations on MDI panels.

Namespace: DevExpress.Xpf.Docking

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

NuGet Package: DevExpress.Wpf.Docking

#Declaration

public IMDIController MDIController { get; }

#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>
DockLayoutManager1.MDIController.TileVertical(DocumentGroup1);

DockLayoutManager - DocumentGroup Alignment

See Also