Share via


SystemButtonEventController.SystemFunctionButtonReleased イベント

定義

現在押されている Fn ハードウェア システム (関数シフトとも呼ばれます) ボタンが離されたときに発生します。

// Register
event_token SystemFunctionButtonReleased(TypedEventHandler<SystemButtonEventController, SystemFunctionButtonEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SystemButtonEventController::SystemFunctionButtonReleased_revoker SystemFunctionButtonReleased(auto_revoke_t, TypedEventHandler<SystemButtonEventController, SystemFunctionButtonEventArgs const&> const& handler) const;
public event TypedEventHandler<SystemButtonEventController,SystemFunctionButtonEventArgs> SystemFunctionButtonReleased;
function onSystemFunctionButtonReleased(eventArgs) { /* Your code */ }
systemButtonEventController.addEventListener("systemfunctionbuttonreleased", onSystemFunctionButtonReleased);
systemButtonEventController.removeEventListener("systemfunctionbuttonreleased", onSystemFunctionButtonReleased);
- or -
systemButtonEventController.onsystemfunctionbuttonreleased = onSystemFunctionButtonReleased;
Public Custom Event SystemFunctionButtonReleased As TypedEventHandler(Of SystemButtonEventController, SystemFunctionButtonEventArgs) 

イベントの種類

注釈

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

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

適用対象

こちらもご覧ください