共用方式為


LockScreenInfo.DetailTextChanged 事件

定義

表示詳細資料文字已變更。

// Register
event_token DetailTextChanged(TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
LockScreenInfo::DetailTextChanged_revoker DetailTextChanged(auto_revoke_t, TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
public event TypedEventHandler<LockScreenInfo,object> DetailTextChanged;
function onDetailTextChanged(eventArgs) { /* Your code */ }
lockScreenInfo.addEventListener("detailtextchanged", onDetailTextChanged);
lockScreenInfo.removeEventListener("detailtextchanged", onDetailTextChanged);
- or -
lockScreenInfo.ondetailtextchanged = onDetailTextChanged;
Public Custom Event DetailTextChanged As TypedEventHandler(Of LockScreenInfo, Object) 

事件類型

適用於