wpf-devexpress-dot-xpf-dot-docking-9c9327e5.md
Provides members to label different docking operation types.
Namespace : DevExpress.Xpf.Docking
Assembly : DevExpress.Xpf.Docking.v25.2.dll
NuGet Package : DevExpress.Wpf.Docking
public enum DockOperation
Public Enum DockOperation
| Name | Description |
|---|---|
Close |
A target Dock Item is being closed.
|
| Dock |
A target Dock Item is being docked to a DockLayoutManager‘s edge or another Dock Item.
|
| Float |
A docked Dock Item is made floating.
|
| Hide |
A Dock Item is made auto-hidden.
|
| Restore |
A closed Dock Item is being restored (see the DockLayoutManager.ClosedPanels property to learn more).
|
| Reorder |
A target Dock Item is being re-arranged within its current container.
|
| Resize |
A Dock Item is being resized.
|
| Move |
A Dock Item is being moved.
|
The following properties accept/return DockOperation values:
The DockOperation enumerator values are used within the DockLayoutManager.DockOperationStarting and DockLayoutManager.DockOperationCompleted events. Get the current DockOperationStartingEventArgs.DockOperation or DockOperationCompletedEventArgs.DockOperation property value to determine a type of a docking operation that is to be performed.
See the DockLayoutManager.DockOperationStarting event to learn more.
See Also