TextBox PreviewKeyDown : TextBox Event « Windows Presentation Foundation « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Windows Presentation Foundation » TextBox Event 
16.5.5.TextBox PreviewKeyDown
<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF " Height="300" Width="300">
    <DockPanel LastChildFill="True">
        <TextBox DockPanel.Dock="Top"
                 PreviewKeyDown="TextBox_KeyEvent" />
        <TextBox Name="txtLog" HorizontalAlignment="Stretch" 
                 IsReadOnly="True" VerticalScrollBarVisibility="Visible"/>
    </DockPanel>
</Window>

//File:Window.xaml.vb
Imports System
Imports System.Windows
Imports System.Windows.Input

Namespace WpfApplication1
  Public Partial Class Window1
    Inherits Window
    Public Sub New()
      InitializeComponent()
    End Sub

    Private Sub TextBox_KeyEvent(sender As Object, e As KeyEventArgs)
      Dim msg As [String[String].Format("{0} - {1}" & vbLf, e.RoutedEvent.Name, e.Key)

      txtLog.Text += msg
      txtLog.ScrollToEnd()
    End Sub

  End Class
End Namespace
WPF Text Box Preview Key Down
16.5.TextBox Event
16.5.1.Provide Keyboard Access to Text BoxesProvide Keyboard Access to Text Boxes
16.5.2.TextBox PreviewTextInputTextBox PreviewTextInput
16.5.3.TextBox text changed eventTextBox text changed event
16.5.4.TextBox TextChanged eventTextBox TextChanged event
16.5.5.TextBox PreviewKeyDownTextBox PreviewKeyDown
16.5.6.TextBox KeyDownTextBox KeyDown
16.5.7.TextBox PreviewKeyUpTextBox PreviewKeyUp
16.5.8.TextBox KeyUpTextBox KeyUp
16.5.9.TextBox TextInputTextBox TextInput
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.