Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

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 the Splash Image topic for examples.

See Also