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

SplashScreenManager.ShowForm(Type, Boolean, Boolean) Method

Creates and displays the specified SplashScreen or WaitForm descendant, centering against your application’s main form.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

public static void ShowForm(
    Type splashFormType,
    bool useFadeIn,
    bool useFadeOut
)

Parameters

Name Type Description
splashFormType Type

The type of splash form to be displayed.

useFadeIn Boolean

true to use the fade-in effect when opening the form; otherwise, false.

useFadeOut Boolean

true to use the fade-out effect when closing the form; otherwise, false.

Remarks

The ShowForm method creates a splash form whose type is passed as the splashFormType parameter, and then displays this splash form centered against your application’s main form. Splash forms are presented by SplashScreen and WaitForm class descendants.

To close the opened splash form, use the SplashScreenManager.CloseForm method.

See Also