Compartir a través de


Cómo: Detectar cuándo se presiona la tecla ENTRAR

Este ejemplo muestra cómo detectar cuando se pulsa la tecla Enter en el teclado.

En este ejemplo se usa un archivo de lenguaje de marcado de aplicación extensible (XAML) y un archivo de código subyacente.

Ejemplo

Cuando el usuario pulsa la tecla Enter en el TextBox, la entrada en el cuadro de texto aparece en otra área de la interfaz de usuario (UI).

El siguiente XAML crea la interfaz de usuario, que consiste en un StackPanel, un TextBlock y un TextBox.

<StackPanel>
    <TextBlock Width="300" Height="20" Text="Type some text into the TextBox and press the Enter key." />
    <TextBox Width="300" Height="30" Name="textBox1" KeyDown="textBox1_KeyDown" />
    <TextBlock Width="300" Height="100" Name="textBlock1" />
</StackPanel>

El siguiente código subyacente crea el controlador de eventos KeyDown. Si la tecla que se pulsa es la Enter, se muestra un mensaje en TextBlock.

private void textBox1_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
    if (e.Key == Key.Enter)
    {
        textBlock1.Text = $"You Entered: {textBox1.Text}";
    }
}
Private Sub textBox1_KeyDown(sender As Object, e As System.Windows.Input.KeyEventArgs)

    If e.Key = Key.Return Then
        textBlock1.Text = "You Entered: " + textBox1.Text
    End If

End Sub

Vea también