Condividi tramite


SystemButtonEventController.SystemFunctionButtonReleased Evento

Definizione

Si verifica quando viene rilasciato un pulsante hardware Fn (noto anche come Maiusc funzione), che è attualmente premuto.

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

Commenti

Questa API è destinata all'uso da parte degli strumenti di accessibilità come hook di basso livello per intercettare gli eventi dai pulsanti del sistema hardware.

La registrazione degli eventi SystemButtonEventController si applica a livello di sistema ed è first-come, first-served. Se un'applicazione o un servizio imposta una proprietà Handled dell'evento SystemButtonEventController su true, le applicazioni o i servizi registrati dopo tale app o servizio per la stessa notifica degli eventi non riceveranno la notifica.

Si applica a

Vedi anche