using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; namespace WpfApplication1 { /// <summary> /// Window2.xaml 的交互逻辑 /// </summary> public partial class Window2 : FLY.ControlLibrary.WindowBigClose { public Window2() { InitializeComponent(); textBox1.KeyDown += new KeyEventHandler(textBox1_KeyDown); } void textBox1_KeyDown(object sender, KeyEventArgs e) { } private void button1_Click(object sender, RoutedEventArgs e) { textBox1.RaiseEvent(new KeyEventArgs(null, null, 0, Key.A)); } } }