ToastNotification.Dismissed Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’une notification toast quitte l’écran, en arrivant à expiration ou en étant explicitement ignorée par l’utilisateur. Les applications en cours d’exécution s’abonnent à cet événement.
// 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)
Type d'événement
Exemples
L’exemple suivant montre comment écouter et gérer l’événement 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;
}
}
Remarques
ToastDismissalReason est inclus dans le paramètre ToastDismissedEventArgs.
S’applique à
Voir aussi
- ToastDismissedEventArgs
- Exemple de notifications de toast
- Exemple d’envoi de notifications toast à partir d’applications de bureau
- Schéma XML toast
- Vignettes, badges et notifications
- Démarrage rapide : Envoi d’une notification toast
- Démarrage rapide : Envoi d’une notification Push toast
- Démarrage rapide : Envoi d’une notification toast à partir du bureau
- Recommandations et liste de contrôle pour les notifications toast
- Comment gérer l’activation à partir d’une notification toast
- Comment opter pour les notifications toast
- Comment planifier une notification toast
- Guide pratique pour activer les notifications toast de bureau via un AppUserModelID
- Catalogue de modèles toast
- Options audio toast