Class RadSplashScreenManager
This class provides API for displaying a splash screen to indicate that the application is loading.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public static class RadSplashScreenManager
Properties
HideAnimation
Gets or sets a RadAnimation that will be shown when the splash screen window is closed.
The default value is FadeAnimation.
Declaration
public static RadAnimation HideAnimation { get; set; }
Property Value
RadAnimation
|
IsSplashScreenActive
Gets a value indicating whether or not there is a splash screen window opened.
Declaration
public static bool IsSplashScreenActive { get; }
Property Value
System.Boolean
|
ShowAnimation
Gets or sets a RadAnimation that will be shown when the splash screen window is opened.
The default value is FadeAnimation.
Declaration
public static RadAnimation ShowAnimation { get; set; }
Property Value
RadAnimation
|
SplashScreenDataContext
Gets or sets an object that will be set as the DataContext of the splash screen window.
Declaration
public static object SplashScreenDataContext { get; set; }
Property Value
System.Object
|
StartupPosition
Gets or sets a System.Windows.Point that allows for controlling the initial values of the Top and Left properties of the splash screen window. The X value of the Point will be set to the Left property of the window and the Y value of the point will be set to the Top property.
Declaration
public static Point? StartupPosition { get; set; }
Property Value
System.Nullable<System.Windows.Point>
|
Methods
Close()
Closes the currently opened splash screen, if there is one.
Declaration
public static void Close()
Reset()
Resets the RadSplashScreenManager properties to their default values.
Declaration
public static void Reset()
Show()
Shows a splash screen window with a RadSplashScreen as its content.
Declaration
public static void Show()
Show<T>()
Shows a splash screen window with an instance of the passed type as its content.
Declaration
public static void Show<T>()
where T : FrameworkElement, new()
Type Parameters
T
|