SystemButtonEventController.SystemFunctionLockChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce en los cambios en el estado del sistema de hardware Fn (también conocido como Mayús de función).
// Register
event_token SystemFunctionLockChanged(TypedEventHandler<SystemButtonEventController, SystemFunctionLockChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void SystemFunctionLockChanged(event_token const* cookie) const;
// Revoke with event_revoker
SystemButtonEventController::SystemFunctionLockChanged_revoker SystemFunctionLockChanged(auto_revoke_t, TypedEventHandler<SystemButtonEventController, SystemFunctionLockChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<SystemButtonEventController,SystemFunctionLockChangedEventArgs> SystemFunctionLockChanged;
function onSystemFunctionLockChanged(eventArgs) { /* Your code */ }
systemButtonEventController.addEventListener("systemfunctionlockchanged", onSystemFunctionLockChanged);
systemButtonEventController.removeEventListener("systemfunctionlockchanged", onSystemFunctionLockChanged);
- or -
systemButtonEventController.onsystemfunctionlockchanged = onSystemFunctionLockChanged;
Public Custom Event SystemFunctionLockChanged As TypedEventHandler(Of SystemButtonEventController, SystemFunctionLockChangedEventArgs)
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.