SplashScreen.Dismissed イベント

定義

アプリのスプラッシュ スクリーンが閉じられたときに発生します。

// 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) 

イベントの種類

注釈

無視されたイベントが発生すると、アプリの最初のビューがユーザーの画面に表示されます。

このイベントをトリガーとして使用してタスクの読み込み (ネットワーク データの読み込みなど) やアニメーションを実行することで、アプリの読み込みに必要な時間を長くしないでください。

適用対象

こちらもご覧ください