Class BaseSplashManager
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.SplashScreen
Assembly: Telerik.WinControls.UI.dll
Syntax
public abstract class BaseSplashManager
Constructors
BaseSplashManager()
Declaration
protected BaseSplashManager()
Events
FormLoad
Occurs when the splash form has been loaded. Note that the form is created on a separate System.Threading.Thread and it is required to use BeginInvoke/Invoke when accessing it in order to prevent cross thread exceptions. Note that this is a static event and you need to explicitly unsubscribe from it in order to prevent memory leaks. Each object that is subscribed to this event cannot be garbage collected.
Declaration
public static event SplashFormEventHandler FormLoad
Event Type
SplashFormEventHandler
|
FormShown
Occurs when the splash form is shown. Note that the form is created on a separate System.Threading.Thread and it is required to use BeginInvoke/Invoke when accessing it in order to prevent cross thread exceptions. Note that this is a static event and you need to explicitly unsubscribe from it in order to prevent memory leaks. Each object that is subscribed to this event cannot be garbage collected.
Declaration
public static event SplashFormEventHandler FormShown
Event Type
SplashFormEventHandler
|