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

DockManager.EndDocking Event

Fires immediately after a docking operation on a dock panel has finished.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Docking")]
public event EndDockingEventHandler EndDocking

#Event Data

The EndDocking event's data class is EndDockingEventArgs. The following properties provide information specific to this event:

Property Description
Canceled Indicates whether the docking operation was canceled by an end-user.
DockedPanels Gets the panel(s) docked to the target control.
Panel Gets the processed dock panel. Inherited from DockPanelEventArgs.

#Remarks

Handle the EndDocking event to perform actions after a panel has been docked. This event serves only as a notification that the docking operation has been completed. To control whether panel(s) can be docked to a particular position, handle the DockManager.Docking event.

For general information on handling panel docking, see the Controlling Dock Operations topic.

See Also