CoreComponentInputSource.KeyDown É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.
Déclenché lorsqu’une touche est enfoncée pour l’élément XAML hébergé actif.
// Register
event_token KeyDown(TypedEventHandler<IInspectable, KeyEventArgs const&> const& handler) const;
// Revoke with event_token
void KeyDown(event_token const* cookie) const;
// Revoke with event_revoker
CoreComponentInputSource::KeyDown_revoker KeyDown(auto_revoke_t, TypedEventHandler<IInspectable, KeyEventArgs const&> const& handler) const;
public event TypedEventHandler<object,KeyEventArgs> KeyDown;
function onKeyDown(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("keydown", onKeyDown);
coreComponentInputSource.removeEventListener("keydown", onKeyDown);
- or -
coreComponentInputSource.onkeydown = onKeyDown;
Public Custom Event KeyDown As TypedEventHandler(Of Object, KeyEventArgs)
Type d'événement
TypedEventHandler<IInspectable,KeyEventArgs>