SplashScreen.Show 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
显示初始屏幕。
重载
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设置为autoClose``true
的方法,则无需调用Close该方法。 加载应用程序后,初始屏幕将自动关闭。 当初始屏幕关闭时,它将花费的时间长度由参数的 fadeoutDuration
默认值(即 300 毫秒)确定。
Call the Show method with autoClose
set to false
when you want to provide a non-default value for the fade duration. 必须调用 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
。
- 属性