KeyEventArgs.Key Propiedad

Definición

Obtiene la tecla de teclado asociada al evento.

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

Valor de propiedad

Key

Key a la que hace referencia el evento.

Ejemplos

En el ejemplo siguiente se crea y KeyEventHandler se comprueba si la clave asociada a KeyEventArgs es la Return clave .

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

Se aplica a

Consulte también