Partager via


ToastNotification.Activated Événement

Définition

Se produit lorsque l’utilisateur active une notification toast par clic ou tactile. Les applications qui s’exécutent s’abonnent à cet événement.

// Register
event_token Activated(TypedEventHandler<ToastNotification, IInspectable const&> const& handler) const;

// Revoke with event_token
void Activated(event_token const* cookie) const;

// Revoke with event_revoker
ToastNotification::Activated_revoker Activated(auto_revoke_t, TypedEventHandler<ToastNotification, IInspectable const&> const& handler) const;
public event TypedEventHandler<ToastNotification,object> Activated;
function onActivated(eventArgs) { /* Your code */ }
toastNotification.addEventListener("activated", onActivated);
toastNotification.removeEventListener("activated", onActivated);
- or -
toastNotification.onactivated = onActivated;
Public Custom Event Activated As TypedEventHandler(Of ToastNotification, Object) 

Type d'événement

Remarques

Dans le cas d’un toast déclenché par une application de bureau, cette application doit s’abonner à au moins l’événement Activated afin qu’elle puisse gérer l’activation attendue de l’application à partir du toast lorsque l’utilisateur la sélectionne.

S’applique à

Voir aussi