SystemButtonEventController.SystemFunctionLockChanged Evento

Definição

Ocorre em alterações no estado do bloqueio de botão do sistema de hardware Fn (também conhecido como Function Shift).

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

Comentários

Essa API destina-se ao uso pelas ferramentas de Acessibilidade como um gancho de baixo nível para interceptar eventos de botões do sistema de hardware.

O registro de eventos SystemButtonEventController aplica todo o sistema e é fornecido pela primeira vez. Se um aplicativo ou serviço definir uma propriedade Handled de evento SystemButtonEventController como true, os aplicativos ou serviços registrados após esse aplicativo ou serviço para a mesma notificação de evento não receberão a notificação.

Aplica-se a

Confira também