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

SplashScreen.ShowMode Property

Gets or sets whether to display the splash screen as a form or as the form’s image specified by SplashImageOptions.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DefaultValue(ShowMode.Form)]
public ShowMode ShowMode { get; set; }

Property Value

Type Default Description
ShowMode **Form**

A ShowMode enumeration value that specifies whether to display the splash screen as a form or as the form’s image.

Available values:

Name Description
Form

Displays a splash form.

Image

Displays an image specified by SplashScreen.SplashImageOptions.

Remarks

The SplashScreen class is a form that can contain other controls. This form is displayed as a splash screen in Form mode.

Instead of the form and its controls, you can display an image as a splash screen:

  • set the ShowMode property to Image
  • use the SplashImageOptions to specify the image. The splash screen supports vector images, transparent images, images of irregular forms with shadows, etc. Fade effects are not supported.

The form’s controls are hidden in Image mode. Enable the AllowControlsInImageMode option to show the controls over the image.

See Also