Skip to main content
All docs
V23.2

IOverlaySplashScreenHandle.QueueCloseUpAction(Action) Method

Specifies an action executed when the Overlay Form is closed.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

void QueueCloseUpAction(
    Action closeUpAction
)

Parameters

Name Type Description
closeUpAction Action

An action executed when the Overlay Form is closed.

Remarks

Use the Close() method to close the Overlay Form.

When you display an Overlay Form, the focused control loses focus. When the Overlay Form is closed, this control gets focus back. The QueueFocus(Control) and QueueFocus(IntPtr) methods allow you to specify the control that should be focused when the Overlay Form is closed. Pass IntPtr.Zero to prevent all controls from having focus.

You can also use the QueueCloseUpAction(Action) method to specify the action that should be executed when the Overlay Form is closed.

See Also