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

MDIControllerCommand.Maximize Property

Maximizes the MDI item or its children.

Namespace: DevExpress.Xpf.Docking

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

Declaration

public static RoutedCommand Maximize { 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 maximizes the active MDI item:

<Button Command="dxdo:MDIControllerCommand.Maximize" CommandTarget="{Binding ElementName=DockLayoutManager1}" CommandParameter="{Binding ElementName=DockLayoutManager1, Path=ActiveDockItem}" />

Corresponding Method: IMDIController.Maximize

See Also