Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SplashScreenManager.ActiveSplashFormTypeInfo Property

Gets or sets the type of the splash form to be displayed by the SplashScreenManager.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("SplashForms")]
public TypeInfo ActiveSplashFormTypeInfo { get; set; }

#Property Value

Type Description
DevExpress.XtraSplashScreen.TypeInfo

A TypeInfo object that specifies the type of the splash form to be displayed by the SplashScreenManager.

#Remarks

At design time, you can choose the active splash form that will be displayed by the SplashScreenManager via the component’s tag:

SplashScreenManager-ActiveSplashForm-ViaTag

…and via the ActiveSplashFormTypeInfo property in the Properties window:

SplashScreenManager-ActiveSplashForm-ViaPropertiesWindow

If you choose a SplashScreen object as the SplashScreenManager‘s active splash form, this SplashScreen will be automatically displayed at the main form startup. If you choose a WaitForm as the active splash form, this WaitForm will not be automatically displayed at the form startup. To display and close the selected WaitForm, you can use the SplashScreenManager.ShowWaitForm and SplashScreenManager.CloseWaitForm methods.

See Also