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

BaseSpinEdit.QueryCloseUp Event

Occurs when the BaseSpinEdit control’s pop-up window is to be closed.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public override event CancelEventHandler QueryCloseUp

#Event Data

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

Property Description
Cancel Gets or sets a value indicating whether the event should be canceled.

#Remarks

The QueryCloseUp event occurs immediately after an end-user closes the pop-up or the BaseSpinEdit.ClosePopup or BaseSpinEdit.CancelPopup methods were called. You can cancel this event by setting its CancelEventArgs.Cancel property to false. If the QueryCloseUp event was not canceled, the BaseSpinEdit.CloseUp event occurs. After the BaseSpinEdit control’s pop-up window is completely closed, the BaseSpinEdit.Closed event is fired.

See Also