LockScreenInfo.AlarmIconChanged Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Указывает, что значок оповещения изменился.
// 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)
Тип события
TypedEventHandler<LockScreenInfo,IInspectable>