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.EndFloating Event

Fires when dropping a page that is becoming floating.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

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

#Event Data

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

#Remarks

For a page that is becoming floating, the following events fire:

  1. XtraTabbedMdiManager.BeginFloating - Fires before a page is made floating. The event allows you to prevent a page from becoming floating.
  2. XtraTabbedMdiManager.Floating - Fires when a page becomes floating.
  3. XtraTabbedMdiManager.FloatMDIChildDragging - Fires repeatedly when dragging a floating page.
  4. XtraTabbedMdiManager.EndFloating - Fires after a floating page has been dropped.

The XtraTabbedMdiManager.BeginFloating, XtraTabbedMdiManager.Floating and XtraTabbedMdiManager.EndFloating events do not fire when dragging floating pages that have already been made floating.

See Also