Freigeben über


ToastNotification.Activated Ereignis

Definition

Tritt auf, wenn der Benutzer eine Popupbenachrichtigung durch einen Klick oder eine Toucheingabe aktiviert. Apps, die ausgeführt werden, abonnieren dieses Ereignis.

// 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) 

Ereignistyp

Hinweise

Im Fall von Popups, die von einer Desktop-App ausgelöst werden, muss diese App mindestens das aktivierte Ereignis abonnieren, damit sie die erwartete Aktivierung der App über das Popup verarbeiten kann, wenn der Benutzer sie auswählt.

Gilt für:

Weitere Informationen