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

SplashScreenManager.ShowImage(SvgImage, Size, Boolean, Boolean) Method

Displays a vector image as a splash form, centering the image against your application’s main form. Allows you to disable fade-in and fade-out effects for the image.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public static void ShowImage(
    SvgImage svgImage,
    Size imageSize,
    bool useFadeIn,
    bool useFadeOut
)

Parameters

Name Type Description
svgImage SvgImage

An SvgImage to be drawn.

imageSize Size

A Size structure that is the image size.

useFadeIn Boolean

true, to use the fade-in effect when the image appears on-screen; otherwise, false.

useFadeOut Boolean

true, to use the fade-out effect when the image hides; otherwise, false. Use the SplashScreenManager.HideImage method to hide a splash form image.

See Also