ToastNotification.Failed 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 si verifica un errore quando Windows tenta di generare una notifica di tipo avviso popup. Le app in esecuzione sottoscrivono questo evento.
// Register
event_token Failed(TypedEventHandler<ToastNotification, ToastFailedEventArgs const&> const& handler) const;
// Revoke with event_token
void Failed(event_token const* cookie) const;
// Revoke with event_revoker
ToastNotification::Failed_revoker Failed(auto_revoke_t, TypedEventHandler<ToastNotification, ToastFailedEventArgs const&> const& handler) const;
public event TypedEventHandler<ToastNotification,ToastFailedEventArgs> Failed;
function onFailed(eventArgs) { /* Your code */ }
toastNotification.addEventListener("failed", onFailed);
toastNotification.removeEventListener("failed", onFailed);
- or -
toastNotification.onfailed = onFailed;
Public Custom Event Failed As TypedEventHandler(Of ToastNotification, ToastFailedEventArgs)
Tipo evento
Commenti
Il motivo dell'errore dell'avviso popup è disponibile nella proprietà ErrorCode del parametro ToastFailedEventArgs .
L'errore più comune che verrà visualizzato quando si genera un avviso popup è un errore di impostazioni , ad esempio un blocco nelle notifiche di tipo avviso popup per questo utente. È consigliabile chiamare ToastNotifier.Setting prima di chiamare Show anziché gestire tale situazione tramite questo evento.
Si applica a
Vedi anche
- ToastFailedEventArgs
- 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
- Guida introduttiva: Invio di una notifica di tipo avviso popup
- Guida introduttiva: Invio di una notifica push di tipo avviso popup
- Guida introduttiva: Invio di una notifica di tipo avviso popup dal desktop
- Linee guida ed elenco di controllo per le notifiche di tipo avviso 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 dei modelli di avviso popup
- Opzioni audio di tipo avviso popup