UserNotificationListener.NotificationChanged 事件

定义

添加或删除通知时发生。

// Register
event_token NotificationChanged(TypedEventHandler<UserNotificationListener, UserNotificationChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
UserNotificationListener::NotificationChanged_revoker NotificationChanged(auto_revoke_t, TypedEventHandler<UserNotificationListener, UserNotificationChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<UserNotificationListener,UserNotificationChangedEventArgs> NotificationChanged;
function onNotificationChanged(eventArgs) { /* Your code */ }
userNotificationListener.addEventListener("notificationchanged", onNotificationChanged);
userNotificationListener.removeEventListener("notificationchanged", onNotificationChanged);
- or -
userNotificationListener.onnotificationchanged = onNotificationChanged;
Public Custom Event NotificationChanged As TypedEventHandler(Of UserNotificationListener, UserNotificationChangedEventArgs) 

事件类型

适用于