SplashScreen.Close(TimeSpan) Method

Definition

Closes the splash screen.

public:
 void Close(TimeSpan fadeoutDuration);
[System.Security.SecurityCritical]
public void Close (TimeSpan fadeoutDuration);
public void Close (TimeSpan fadeoutDuration);
[<System.Security.SecurityCritical>]
member this.Close : TimeSpan -> unit
member this.Close : TimeSpan -> unit
Public Sub Close (fadeoutDuration As TimeSpan)

Parameters

fadeoutDuration
TimeSpan

A TimeSpan that specifies how long it will take for the splash screen to fade after the close operation has been initiated.

Attributes

Remarks

If you called the Show method with the autoClose parameter set to true, you do not have to call the Close method. The splash screen will close automatically after the application is loaded. When the splash screen closes, the length of time it will take for it to fade is determined by the default value for the fadeoutDuration parameter, which is 300 milliseconds.

Applies to

See also