Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Keyboard.KeyDown Attached Event

Definition

Namespace:
System.Windows.Input
Assembly:
PresentationCore.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Occurs when a key on the keyboard is pressed.

see AddKeyDownHandler, and RemoveKeyDownHandler
see AddKeyDownHandler, and RemoveKeyDownHandler
see AddKeyDownHandler, and RemoveKeyDownHandler

Examples

The following example creates TextBox that attaches an event handler for the KeyDown event. When the Return is pressed, the event handler displays the text in the TextBox in a TextBlock.

<StackPanel>
 <TextBlock Width="300" Height="20">
 Type some text into the TextBox and press the Enter key.
 </TextBlock>
 <TextBox Width="300" Height="30" Name="textBox1"
 KeyDown="OnKeyDownHandler"/>
 <TextBlock Width="300" Height="100" Name="textBlock1"/>
</StackPanel>
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

Remarks

This is an attached event. WPF implements attached events as routed events. Attached events are fundamentally a XAML language concept for referencing events that can be handled on objects that do not define that event, which WPF expands upon by also enabling the event to traverse a route. Attached events do not have a direct handling syntax in code; to attach handlers for a routed event in code, you use a designated Add*Handler method. For details, see Attached Events Overview.

Routed Event Information

Item Value
Identifier field KeyDownEvent
Routing strategy Bubbling
Delegate KeyEventHandler

Applies to

See also


Feedback

Was this page helpful?