Partager via


SystemButtonEventController.SystemFunctionLockIndicatorChanged Événement

Définition

Se produit lors des modifications apportées à l’état de l’indicateur visuel pour le verrouillage du bouton du système matériel Fn (également connu sous le nom de Maj de fonction).

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

Type d'événement

Remarques

Cette API est destinée à être utilisée par les outils d’accessibilité comme un crochet de bas niveau pour intercepter des événements à partir des boutons du système matériel.

L’inscription d’événements SystemButtonEventController s’applique à l’ensemble du système et correspond au premier arrivé, premier servi. Si une application ou un service définit une propriété Gérée d’événement SystemButtonEventController 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.

S’applique à

Voir aussi