ToastNotification.Dismissed イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
トースト通知が、有効期限が切れているか、ユーザーによって明示的に無視された状態で画面を離れると発生します。 実行中のアプリは、このイベントをサブスクライブします。
// Register
event_token Dismissed(TypedEventHandler<ToastNotification, ToastDismissedEventArgs const&> const& handler) const;
// Revoke with event_token
void Dismissed(event_token const* cookie) const;
// Revoke with event_revoker
ToastNotification::Dismissed_revoker Dismissed(auto_revoke_t, TypedEventHandler<ToastNotification, ToastDismissedEventArgs const&> const& handler) const;
public event TypedEventHandler<ToastNotification,ToastDismissedEventArgs> Dismissed;
function onDismissed(eventArgs) { /* Your code */ }
toastNotification.addEventListener("dismissed", onDismissed);
toastNotification.removeEventListener("dismissed", onDismissed);
- or -
toastNotification.ondismissed = onDismissed;
Public Custom Event Dismissed As TypedEventHandler(Of ToastNotification, ToastDismissedEventArgs)
イベントの種類
例
次の例は、Dismissed イベントをリッスンして処理する方法を示しています。
var notifications = Windows.UI.Notifications;
yourToastNotification.addEventListener("dismissed", function (e) {
switch (e.reason) {
case notifications.ToastDismissalReason.applicationHidden:
// The application hid the toast using ToastNotifier.hide.
break;
case notifications.ToastDismissalReason.userCanceled:
// The user dismissed the toast.
break;
case notifications.ToastDismissalReason.timedOut:
// The toast has expired.
break;
}
}
注釈
ToastDismissalReason は ToastDismissedEventArgs パラメーターに含まれています。
適用対象
こちらもご覧ください
- ToastDismissedEventArgs
- Toast notifications sample (トースト通知のサンプル)
- デスクトップ アプリからのトースト通知の送信サンプル
- トースト XML スキーマ
- タイル、バッジ、通知
- クイック スタート: トースト通知の送信
- クイック スタート: トースト プッシュ通知の送信
- クイック スタート: デスクトップからトースト通知を送信する
- トースト通知のガイドラインとチェックリスト
- トースト通知からのアクティブ化を処理する方法
- トースト通知をオプトインする方法
- トースト通知をスケジュールする方法
- AppUserModelID を使用して、デスクトップ トースト通知を有効にする方法
- トースト テンプレート カタログ
- トースト オーディオ オプション