SystemButtonEventController.SystemFunctionButtonReleased Evento

Definición

Se produce cuando se libera un botón de sistema de hardware Fn (también conocido como Mayús de función), que está presionado actualmente.

// 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) 

Tipo de evento

Comentarios

Esta API está pensada para que la usen las herramientas de accesibilidad como un enlace de bajo nivel para interceptar eventos de botones del sistema de hardware.

El registro de eventos SystemButtonEventController aplica todo el sistema y es el primero en servir. Si una aplicación o servicio establece un evento SystemButtonEventController propiedad Handled en true, las aplicaciones o los servicios registrados después de esa aplicación o servicio para la misma notificación de eventos no recibirán la notificación.

Se aplica a

Consulte también