共用方式為


SplashScreen.Show 方法

定義

會顯示啟動顯示畫面。

多載

Show(Boolean)

會顯示啟動顯示畫面。

Show(Boolean, Boolean)

會顯示啟動顯示畫面。

Show(Boolean)

會顯示啟動顯示畫面。

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)

參數

autoClose
Boolean

true 表示要自動關閉啟動顯示畫面,false 則表示要手動關閉啟動顯示畫面。

屬性

例外狀況

找不到建構函式中指定的資源。

備註

如果您呼叫 Show 設定為 true 的方法 autoClose ,則不需要呼叫 Close 方法。 載入應用程式之後,啟動顯示畫面會自動關閉。 啟動顯示畫面關閉時,它淡出所需的時間長度取決於 參數的 fadeoutDuration 預設值,也就是 300 毫秒。

Show當您想要提供淡出持續時間的非預設值時,請呼叫 設定 false 為 的方法 autoClose 。 您必須呼叫 Close 方法來關閉啟動顯示畫面。

另請參閱

適用於

Show(Boolean, Boolean)

會顯示啟動顯示畫面。

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)

參數

autoClose
Boolean

true 表示要自動關閉啟動顯示畫面,false 則表示要手動關閉啟動顯示畫面。

topMost
Boolean

如果啟動顯示畫面視窗應該使用 WS_EX_TOPMOST 樣式,則為 true,否則為 false

屬性

另請參閱

適用於