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

XtraTabbedMdiManager.EndDocking Event

Fires after a floating page has been docked to the XtraTabbedMdiManager.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Events")]
public event FloatingEventHandler EndDocking

#Event Data

The EndDocking event's data class is DevExpress.XtraTabbedMdi.FloatingEventArgs.

#Remarks

If the XtraTabbedMdiManager.FloatOnDrag option is enabled, a page can be made floating by dragging its tab header away from the XtraTabbedMdiManager‘s header region. The floating page can then be docked back onto the XtraTabbedMdiManager via drag-and-drop. When docking a floating page, the following events fire:

  1. XtraTabbedMdiManager.BeginDocking - Fires before a floating page is docked to the XtraTabbedMdiManager. This event allows you to cancel the operation.
  2. XtraTabbedMdiManager.EndDocking - Fires after the floating page has been docked to the XtraTabbedMdiManager.
See Also