ToastNotification.Activated 事件

定义

当用户通过单击或触摸激活 Toast 通知时发生。 运行的应用订阅此事件。

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

事件类型

注解

对于由桌面应用引发的 Toast,该应用必须至少订阅 Activated 事件,以便它可以在用户选择该应用时处理 Toast 的预期激活。

适用于

另请参阅