SystemButtonEventController.SystemFunctionLockIndicatorChanged Evento

Definición

Se produce en los cambios en el estado del indicador visual del sistema de hardware Fn (también conocido como Mayús de función).

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

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