SplashScreen.Show Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Displays the splash screen.
Overloads
Show(Boolean) |
Displays the splash screen. |
Show(Boolean, Boolean) |
Displays the splash screen. |
Show(Boolean)
Displays the splash screen.
public:
void Show(bool autoClose);
[System.Security.SecurityCritical]
public void Show (bool autoClose);
public void Show (bool autoClose);
[<System.Security.SecurityCritical>]
member this.Show : bool -> unit
member this.Show : bool -> unit
Public Sub Show (autoClose As Boolean)
Parameters
- autoClose
- Boolean
true
to automatically close the splash screen; false
to close the splash screen manually.
- Attributes
Exceptions
The resource specified in the constructor could not be found.
Remarks
If you call the Show method with autoClose
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.
Call the Show method with autoClose
set to false
when you want to provide a non-default value for the fade duration. You will have to call the Close method to close the splash screen.
See also
Applies to
Show(Boolean, Boolean)
Displays the splash screen.
public:
void Show(bool autoClose, bool topMost);
[System.Security.SecurityCritical]
public void Show (bool autoClose, bool topMost);
public void Show (bool autoClose, bool topMost);
[<System.Security.SecurityCritical>]
member this.Show : bool * bool -> unit
member this.Show : bool * bool -> unit
Public Sub Show (autoClose As Boolean, topMost As Boolean)
Parameters
- autoClose
- Boolean
true
to automatically close the splash screen; false
to close the splash screen manually.
- topMost
- Boolean
true
if the splash screen window should use the WS_EX_TOPMOST style; otherwise false
.
- Attributes