다음을 통해 공유


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 이벤트 처리 속성을 true로 설정하는 경우 동일한 이벤트 알림에 대해 해당 앱 또는 서비스 다음에 등록된 애플리케이션 또는 서비스는 알림을 받지 않습니다.

적용 대상

추가 정보