Skip to main content

SplashFormProperties(Form, Image, Boolean, Boolean, ICustomImagePainter, Int32, Form, Boolean, Int32) Constructor

Initializes a new instance of the SplashFormProperties class with the specified settings. This member supports the internal infrastructure, and is not intended to be used directly from your code.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public SplashFormProperties(
    Form parentForm,
    Image image,
    bool useFadeIn,
    bool useFadeOut,
    ICustomImagePainter painter,
    int pendingTime,
    Form parentFormInternal,
    bool allowGlowEffect,
    int closingDelay
)

Parameters

Name Type Description
parentForm Form

A parent form for a splash form.

image Image

An Image object.

useFadeIn Boolean

true, to use the fade-in effect when a splash form is displayed; otherwise, false. This value is assigned to the SplashFormProperties.UseFadeInEffect property.

useFadeOut Boolean

true, to use the fade-out effect when a splash form is closed; otherwise, false. This value is assigned to the SplashFormProperties.UseFadeOutEffect property.

painter DevExpress.XtraSplashScreen.ICustomImagePainter

An ICustomImagePainter object that implements a custom drawing procedure. This object is assigned to the SplashFormProperties.CustomImagePainter property.

pendingTime Int32

The time in milliseconds that should elapse before the splash form is actually displayed onscreen. If a close command is sent to the splash form during this time, the splash form will not be displayed.

parentFormInternal Form

This member supports the internal infrastructure, and is not intended to be used directly from your code.

allowGlowEffect Boolean

true, to use the glow effect when displaying a splash form; otherwise, false. This value is assigned to the SplashFormProperties.AllowGlowEffect property.

closingDelay Int32

The delay, in milliseconds, that should elapse before the splash form is actually closed. This value is assigned to the SplashFormProperties.ClosingDelay property.

See Also