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

MDIControllerCommand.ArrangeIcons Property

Arranges minimized windows at the bottom of the main window when the DocumentGroup.MDIStyle property is set to MDIStyle.MDI.

Namespace: DevExpress.Xpf.Docking

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

Declaration

public static RoutedCommand ArrangeIcons { get; }

Property Value

Type Description
RoutedCommand

A command that implements the ICommand, and is routed through the element tree.

Remarks

The following code sample positions the Panel1 item at the DockLayoutManager’s bottom:

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

Corresponding Method: IMDIController.ArrangeIcons

See Also