Skip to main content
All docs
V25.1
  • IMDIController.Maximize(BaseLayoutItem) Method

    Maximizes the document.

    Namespace: DevExpress.Xpf.Docking

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

    NuGet Package: DevExpress.Wpf.Docking

    Declaration

    bool Maximize(
        BaseLayoutItem document
    )

    Parameters

    Name Type Description
    document BaseLayoutItem

    The BaseLayoutItem object that should be maximized.

    Returns

    Type Description
    Boolean

    true, if the document is maximized; otherwise, false.

    Remarks

    The following code sample maximizes the Panel1 DocumentPanel:

    <Window ...
      xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking">
      <dxdo:DockLayoutManager x:Name="DockLayoutManager1" >
        <dxdo:LayoutGroup>
          <dxdo:DocumentGroup MDIStyle="MDI">
            <dxdo:DocumentPanel x:Name="Panel1"/>
            <dxdo:DocumentPanel x:Name="Panel2"/>
          </dxdo:DocumentGroup>
        </dxdo:LayoutGroup>
      </dxdo:DockLayoutManager>
    </Window>
    
    DockLayoutManager1.MDIController.Maximize(Panel1);
    
    See Also