KeyEventArgs.Key Proprietà

Definizione

Ottiene il tasto della tastiera associato all'evento di input.

public:
 property System::Windows::Input::Key Key { System::Windows::Input::Key get(); };
public System.Windows.Input.Key Key { get; }
member this.Key : System.Windows.Input.Key
Public ReadOnly Property Key As Key

Valore della proprietà

Key

Oggetto Key cui fa riferimento l'evento.

Esempio

Nell'esempio seguente viene creato un oggetto KeyEventHandler e viene verificato se la chiave associata all'oggetto KeyEventArgs è la Return chiave.

private void OnKeyDownHandler(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Return)
    {
        textBlock1.Text = "You Entered: " + textBox1.Text;
    }
}
Private Sub OnKeyDownHandler(ByVal sender As Object, ByVal e As KeyEventArgs)
    If (e.Key = Key.Return) Then
        textBlock1.Text = "You Entered: " + textBox1.Text
    End If
End Sub

Si applica a

Vedi anche