共用方式為


FocusSessionManager.IsFocusActiveChanged 事件

定義

當裝置的焦點會話狀態變更時引發。

// Register
event_token IsFocusActiveChanged(TypedEventHandler<FocusSessionManager, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
FocusSessionManager::IsFocusActiveChanged_revoker IsFocusActiveChanged(auto_revoke_t, TypedEventHandler<FocusSessionManager, IInspectable const&> const& handler) const;
public event TypedEventHandler<FocusSessionManager,object> IsFocusActiveChanged;
function onIsFocusActiveChanged(eventArgs) { /* Your code */ }
focusSessionManager.addEventListener("isfocusactivechanged", onIsFocusActiveChanged);
focusSessionManager.removeEventListener("isfocusactivechanged", onIsFocusActiveChanged);
- or -
focusSessionManager.onisfocusactivechanged = onIsFocusActiveChanged;
Public Custom Event IsFocusActiveChanged As TypedEventHandler(Of FocusSessionManager, Object) 

事件類型

適用於