Skip to main content

SplashScreenManager(UserControl, Type, Boolean, Boolean, Type) Constructor

Initializes a new instance of the SplashScreenManager class with the specified settings.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public SplashScreenManager(
    UserControl parentControl,
    Type splashFormType,
    bool useFadeIn,
    bool useFadeOut,
    Type type
)

Parameters

Name Type Description
parentControl UserControl

A UserControl contained on the Form, against which the splash form is centered.

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.

type Type

The Type of the parent object. The parent should be either a Form or a UserControl. Otherwise, ArgumentException is thrown.

See Also