BaseSpinEdit.QueryCloseUp Event
Occurs when the BaseSpinEdit control’s pop-up window is to be closed.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.1.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.