Share via


SystemButtonEventController.SystemFunctionLockIndicatorChanged イベント

定義

Fn ハードウェア システム (関数シフトとも呼ばれます) ボタン ロックのビジュアル インジケーターの状態の変更時に発生します。

// Register
event_token SystemFunctionLockIndicatorChanged(TypedEventHandler<SystemButtonEventController, SystemFunctionLockIndicatorChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SystemButtonEventController::SystemFunctionLockIndicatorChanged_revoker SystemFunctionLockIndicatorChanged(auto_revoke_t, TypedEventHandler<SystemButtonEventController, SystemFunctionLockIndicatorChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<SystemButtonEventController,SystemFunctionLockIndicatorChangedEventArgs> SystemFunctionLockIndicatorChanged;
function onSystemFunctionLockIndicatorChanged(eventArgs) { /* Your code */ }
systemButtonEventController.addEventListener("systemfunctionlockindicatorchanged", onSystemFunctionLockIndicatorChanged);
systemButtonEventController.removeEventListener("systemfunctionlockindicatorchanged", onSystemFunctionLockIndicatorChanged);
- or -
systemButtonEventController.onsystemfunctionlockindicatorchanged = onSystemFunctionLockIndicatorChanged;
Public Custom Event SystemFunctionLockIndicatorChanged As TypedEventHandler(Of SystemButtonEventController, SystemFunctionLockIndicatorChangedEventArgs) 

イベントの種類

注釈

この API は、ハードウェア システム ボタンからイベントをインターセプトするための低レベルフックとして、アクセシビリティ ツールで使用することを目的としています。

SystemButtonEventController イベント登録は、システム全体に適用され、先着順です。 アプリケーションまたはサービスで SystemButtonEventController イベント Handled プロパティが true に設定されている場合、同じイベント通知のそのアプリまたはサービスの後に登録されたアプリケーションまたはサービスは通知を受け取りません。

適用対象

こちらもご覧ください