SystemButtonEventController.SystemFunctionLockIndicatorChanged Evento

Definição

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

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

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