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

SplashScreen.AllowControlsInImageMode Property

Gets or sets whether custom controls can be added to the SplashScreen when SplashScreen.ShowMode is set to ShowMode.Image.

Namespace: DevExpress.XtraSplashScreen

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

[DefaultValue(false)]
public bool AllowControlsInImageMode { get; set; }

Property Value

Type Default Description
Boolean **false**

true if custom controls can be added to the SplashScreen when SplashScreen.ShowMode is set to ShowMode.Image; otherwise, false.

Remarks

To display an image as a splash form, set the SplashScreen.ShowMode property to ShowMode.Image. This hides all the controls added to the SplashScreen and displays the SplashScreen.SplashImage in the form’s background.

You can still allow custom controls to be displayed above the SplashScreen.SplashImage. This can be accomplished by setting the AllowControlsInImageMode property to true and adding your controls to the SplashScreen form.

See Also