Condividi tramite


InputKeyboardSource.KeyDown Evento

Definizione

Si verifica quando l'utente preme un tasto quando il tasto ALT non viene premuto.

// Register
event_token KeyDown(TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;

// Revoke with event_token
void KeyDown(event_token const* cookie) const;

// Revoke with event_revoker
InputKeyboardSource::KeyDown_revoker KeyDown(auto_revoke_t, TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
public event TypedEventHandler<InputKeyboardSource,KeyEventArgs> KeyDown;
function onKeyDown(eventArgs) { /* Your code */ }
inputKeyboardSource.addEventListener("keydown", onKeyDown);
inputKeyboardSource.removeEventListener("keydown", onKeyDown);
- or -
inputKeyboardSource.onkeydown = onKeyDown;
Public Custom Event KeyDown As TypedEventHandler(Of InputKeyboardSource, KeyEventArgs) 

Tipo evento

Commenti

Le app non ricevono questo evento quando è abilitato un Input Method Editor (IME). L'IME (Input Method Editor) gestisce tutti gli input della tastiera e imposta gestito su true.

Si applica a

Vedi anche