New to Telerik UI for WPFStart a free 30-day trial

An instance of this class is set to the DataContext of a splash screen by default.

Definition

Constructors

C#
public SplashScreenDataContext()

Properties

Specifies the text to be displayed as the content of the splash screen.

C#
public string Content { get; set; }

Specifies the text to be displayed in the footer of the splash screen.

C#
public string Footer { get; set; }

HorizontalContentAlignment

HorizontalAlignment

Specifies the HorizontalAlignment of the ContentPresenter that shows the Content.

C#
public HorizontalAlignment HorizontalContentAlignment { get; set; }

HorizontalFooterAlignment

HorizontalAlignment

Specifies the HorizontalAlignment of the ContentPresenter that shows the Footer.

C#
public HorizontalAlignment HorizontalFooterAlignment { get; set; }

Specifies the Height of the Image.

C#
public double ImageHeight { get; set; }

Specifies a path to an image to be displayed in the splash screen.

C#
public string ImagePath { get; set; }

Specifies the Stretch of the Image.

C#
public Stretch ImageStretch { get; set; }

Specifies the Width of the Image.

C#
public double ImageWidth { get; set; }

This property is bound to the IsIndeterminate property of the RadProgressBar shown in a splash screen by default.

C#
public bool IsIndeterminate { get; set; }

This property determines whether the RadProgressBar will be shown in the splash screen.

C#
public bool IsProgressBarVisible { get; set; }

This property is bound to the Maximum property of the RadProgressBar shown in a splash screen by default.

C#
public double MaxValue { get; set; }

This property is bound to the Minimum property of the RadProgressBar shown in a splash screen by default.

C#
public double MinValue { get; set; }

Specifies the type of cursor to be displayed for the splash screen.

C#
public Cursor MouseCursor { get; set; }

This property is bound to the Value property of the RadProgressBar shown in a splash screen by default.

C#
public double ProgressValue { get; set; }