Skip to main content
A newer version of this page is available. .

SplashScreenManager.CloseOverlayForm(IOverlaySplashScreenHandle) Method

Closes the Overlay Form with the specified handle.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

public static void CloseOverlayForm(
    IOverlaySplashScreenHandle handle
)

Parameters

Name Type Description
handle DevExpress.XtraSplashScreen.IOverlaySplashScreenHandle

An IOverlaySplashScreenHandle object specifying the handle of the Overlay Form to close.

Remarks

The CloseOverlayForm method closes the Overlay Form with the specified handle. The handle is previously returned by the SplashScreenManager.ShowOverlayForm method.


using DevExpress.XtraSplashScreen;
//...
IOverlaySplashScreenHandle ShowProgressPanel() {
  return SplashScreenManager.ShowOverlayForm(this);
}
void CloseProgressPanel(IOverlaySplashScreenHandle handle) {
  if(handle != null)
    SplashScreenManager.CloseOverlayForm(handle);
}
//...
IOverlaySplashScreenHandle handle = null;
try {
  handle = ShowProgressPanel();
  // Now perform the long-running operation while
  // the Overlay Form overlaps the current form.
}
finally {
  CloseProgressPanel(handle);
}

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CloseOverlayForm(IOverlaySplashScreenHandle) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also