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

Fires after a resize 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 EndSizingEventHandler EndSizing

#Event Data

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

Property Description
Canceled Gets a value which indicates whether the operation has been canceled.
Panel Gets the processed dock panel. Inherited from DockPanelEventArgs.
SizingSide Gets the dock panel’s dragged edge.

#Remarks

Handle the EndSizing event to perform actions after end-users have finished resizing the dock panel. This can for instance, be used to perform any cleanup necessary after handling the DockManager.StartSizing event.

This event serves only as a notification that the operation has been completed.

For general information on resizing the dock panels, see the Controlling Resizing Operations documents.

See Also