windowsforms-devexpress-dot-xtrasplashscreen-dot-splashscreen-b0fc5917.md
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.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(ShowMode.Form)]
public ShowMode ShowMode { get; set; }
<DefaultValue(ShowMode.Form)>
Public Property ShowMode As ShowMode
| 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 the default or custom image specified in SplashScreen.SplashImageOptions. Fade effects are not supported in Image display mode.
|
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:
ShowMode property to ImageThe form’s controls are hidden in Image mode. Enable the AllowControlsInImageMode option to show the controls over the image.
See Also