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

SplashScreenManager.ShowImage(Image, Boolean) Method

Displays an image as a splash form, centering the image against your application’s main form.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public static void ShowImage(
    Image image,
    bool useFadeIn
)

Parameters

Name Type Description
image Image

An Image to be displayed as a splash form.

useFadeIn Boolean

true to use the fade-in effect during the image’s opening; otherwise, false.

Remarks

The fade-in effect when the image opens can be enabled via the useFadeIn parameter. The fade-out effect when the image closes is turned on when using the current ShowImage overload.

To hide an image displayed via the ShowImage method, use the SplashScreenManager.HideImage method.

See Also