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. |
Docked |
Gets the panel |
Panel |
Gets the processed dock panel.
Inherited from Dock |
#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.