LockScreenInfo.AlarmIconChanged 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 alarm icon has changed.
// Register
event_token AlarmIconChanged(TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
// Revoke with event_token
void AlarmIconChanged(event_token const* cookie) const;
// Revoke with event_revoker
LockScreenInfo::AlarmIconChanged_revoker AlarmIconChanged(auto_revoke_t, TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
public event TypedEventHandler<LockScreenInfo,object> AlarmIconChanged;
function onAlarmIconChanged(eventArgs) { /* Your code */ }
lockScreenInfo.addEventListener("alarmiconchanged", onAlarmIconChanged);
lockScreenInfo.removeEventListener("alarmiconchanged", onAlarmIconChanged);
- or -
lockScreenInfo.onalarmiconchanged = onAlarmIconChanged;
Public Custom Event AlarmIconChanged As TypedEventHandler(Of LockScreenInfo, Object)
Event Type
TypedEventHandler<LockScreenInfo,IInspectable>