ToastNotification.Activated 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当用户通过单击或触摸激活 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)
事件类型
TypedEventHandler<ToastNotification,IInspectable>
注解
对于由桌面应用引发的 Toast,该应用必须至少订阅 Activated 事件,以便它可以在用户选择该应用时处理 Toast 的预期激活。