LockScreenInfo.BadgesChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the badges have changed.
// Register
event_token BadgesChanged(TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
// Revoke with event_token
void BadgesChanged(event_token const* cookie) const;
// Revoke with event_revoker
LockScreenInfo::BadgesChanged_revoker BadgesChanged(auto_revoke_t, TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
public event TypedEventHandler<LockScreenInfo,object> BadgesChanged;
function onBadgesChanged(eventArgs) { /* Your code */ }
lockScreenInfo.addEventListener("badgeschanged", onBadgesChanged);
lockScreenInfo.removeEventListener("badgeschanged", onBadgesChanged);
- or -
lockScreenInfo.onbadgeschanged = onBadgesChanged;
Public Custom Event BadgesChanged As TypedEventHandler(Of LockScreenInfo, Object)
Event Type
TypedEventHandler<LockScreenInfo,IInspectable>