Condividi tramite


SystemButtonEventController.SystemFunctionLockChanged Evento

Definizione

Si verifica in caso di modifiche allo stato del sistema hardware Fn (noto anche come blocco del pulsante Shift della funzione).

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

Commenti

Questa API è destinata all'uso da parte degli strumenti di accessibilità come un hook a basso livello per intercettare gli eventi dai pulsanti di 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 evento SystemButtonEventController su true, applicazioni o servizi registrati dopo tale app o servizio per la stessa notifica evento non riceverà la notifica.

Si applica a

Vedi anche