Skip to main content
A newer version of this page is available. .

MDIControllerCommand.Minimize Property

Maximizes the MDI item or its children.

Namespace: DevExpress.Xpf.Docking

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

Declaration

public static RoutedCommand Minimize { get; }

Property Value

Type Description
RoutedCommand

A RoutedCommand object that defines a command implementing the ICommand, and is routed through the element tree.

Remarks

The following code sample minimizes the Panel11 MDI item:

<Button Command="dxdo:MDIControllerCommand.Minimize" CommandTarget="{Binding ElementName=DockLayoutManager1}" CommandParameter="{Binding ElementName=Panel1}" />

Corresponding Method: IMDIController.Minimize

See Also