SystemButtonEventController.SystemFunctionLockChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lors des modifications apportées à l’état du verrouillage du bouton du système matériel Fn (également connu sous le nom de Maj de fonction).
// 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)
Type d'événement
Remarques
Cette API est destinée à être utilisée par les outils d’accessibilité en tant que hook de bas niveau pour intercepter des événements à partir de boutons système matériels.
L’inscription d’événements SystemButtonEventController s’applique à l’ensemble du système et est « premier arrivé, premier servi ». Si une application ou un service définit une propriété d’événement SystemButtonEventController Handled sur true, les applications ou services inscrits après cette application ou ce service pour la même notification d’événement ne recevront pas la notification.