SystemButtonEventController.SystemFunctionButtonReleased Evento

Definição

Ocorre quando um botão Fn hardware system (também conhecido como Function Shift), que está pressionado no momento, é liberado.

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

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