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

DockControllerCommand.Hide Property

Enables the auto-hide functionality for the item/panel and hides it at a corresponding edge of the DockLayoutManager container.

Namespace: DevExpress.Xpf.Docking

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

NuGet Package: DevExpress.Wpf.Docking

#Declaration

public static RoutedCommand Hide { get; }

#Property Value

Type Description
RoutedCommand

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

#Remarks

The following code sample hides the DockLayoutManager’s Panel1 item:

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

Corresponding Method: DockControllerBase.Hide

See Also