SplashScreen.Dismissed イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリのスプラッシュ スクリーンが閉じられたときに発生します。
// Register
event_token Dismissed(TypedEventHandler<SplashScreen, IInspectable const&> const& handler) const;
// Revoke with event_token
void Dismissed(event_token const* cookie) const;
// Revoke with event_revoker
SplashScreen::Dismissed_revoker Dismissed(auto_revoke_t, TypedEventHandler<SplashScreen, IInspectable const&> const& handler) const;
public event TypedEventHandler<SplashScreen,object> Dismissed;
function onDismissed(eventArgs) { /* Your code */ }
splashScreen.addEventListener("dismissed", onDismissed);
splashScreen.removeEventListener("dismissed", onDismissed);
- or -
splashScreen.ondismissed = onDismissed;
Public Custom Event Dismissed As TypedEventHandler(Of SplashScreen, Object)
イベントの種類
TypedEventHandler<SplashScreen,IInspectable>
注釈
無視されたイベントが発生すると、アプリの最初のビューがユーザーの画面に表示されます。
このイベントをトリガーとして使用してタスクの読み込み (ネットワーク データの読み込みなど) やアニメーションを実行することで、アプリの読み込みに必要な時間を長くしないでください。