ToastNotification.Dismissed Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando una notifica di tipo avviso popup lascia la schermata, scaduta o ignorata in modo esplicito dall'utente. App che eseguono la sottoscrizione a questo evento.
// 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)
Tipo evento
Esempio
Nell'esempio seguente viene illustrato come ascoltare e gestire l'evento 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;
}
}
Commenti
ToastDismissalReason è incluso nel parametro ToastDismissedEventArgs.
Si applica a
Vedi anche
- ToastDismissedEventArgs
- Esempio di notifiche di tipo avviso popup
- Esempio di invio notifiche di tipo avviso popup da app desktop
- Xml Schema di tipo avviso popup
- Riquadri e notifiche
- Avvio rapido: Invio di una notifica di tipo avviso popup
- Avvio rapido: Invio di una notifica push popup
- Avvio rapido: Invio di una notifica popup dal desktop
- Linee guida ed elenco di controllo per le notifiche popup
- Come gestire l'attivazione da una notifica di tipo avviso popup
- Come acconsentire esplicitamente alle notifiche di tipo avviso popup
- Come pianificare una notifica di tipo avviso popup
- Come abilitare le notifiche di tipo avviso popup sul desktop tramite un AppUserModelID
- Catalogo di modelli di tipo avviso popup
- Opzioni audio di tipo avviso popup