How do you get the character appropriate for the given KeyDown event in WPF?
private void UserControl1_KeyDown_1(object sender, KeyEventArgs e) { FieldInfo field = e.GetType().GetField ( "_scanCode", BindingFlags.NonPublic | BindingFlags.Instance ); Int32 scancode = (Int32)field.GetValue(e); char c = (char)scancode; }