A newer version of this page is available.
Switch to the current version.
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.2.dll
Declaration
[DefaultValue(ShowMode.Form)]
public ShowMode ShowMode { get; set; }
<DefaultValue(ShowMode.Form)>
Public Property ShowMode As ShowMode
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. |
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
Feedback