WPF中keydown上的文本框键更改

时间:2013-07-22 22:30:54

标签: c# wpf

我想在KeyDown上的文本框中显示乌尔都语语言字符而不是英语字符,例如,如果键入“b”,则乌尔都语单词“ب”应出现在文本框中。

我在WinForm应用程序中执行此操作,如下面的代码正常工作,将英文键char发送到函数,该函数返回其Urdu等效字符并在Textbox中显示而不是英文字符。

private void RTBUrdu_KeyPress(object sender, KeyPressEventArgs e)
{
e.KeyChar = AsciiToUrdu(e.KeyChar); //Write Urdu
}

我在WPF中找不到上述代码的等价物。

2 个答案:

答案 0 :(得分:2)

如果您可以确保该语言在用户系统中注册为输入语言,您实际上可以使用InputLanguageManager完全自动执行此操作。通过在文本框中设置附加属性,可以在选择文本框时有效地更改键盘输入语言,并在取消选择文本框时重置它。

答案 1 :(得分:1)

比WinForms方法略微丑陋,但这应该有效(使用KeyDown事件和KeyInterop.VirtualKeyFromKey()转换器):

private void TextBox_KeyDown(object sender, KeyEventArgs e)
{
    var ch = (char)KeyInterop.VirtualKeyFromKey(e.Key);
    if (!char.IsLetter(ch)) { return; }

    bool upper = false;
    if (Keyboard.IsKeyToggled(Key.Capital) || Keyboard.IsKeyToggled(Key.CapsLock))
    {
        upper = !upper;
    }
    if (Keyboard.IsKeyDown(Key.LeftShift) || Keyboard.IsKeyDown(Key.RightShift))
    {
        upper = !upper;
    }
    if (!upper)
    {
        ch = char.ToLower(ch);
    }

    var box = (sender as TextBox);
    var text = box.Text;
    var caret = box.CaretIndex;

    //string urdu = AsciiToUrdu(e.Key);
    string urdu = AsciiToUrdu(ch);

    //Update the TextBox' text..
    box.Text = text.Insert(caret, urdu);
    //..move the caret accordingly..
    box.CaretIndex = caret + urdu.Length;
    //..and make sure the keystroke isn't handled again by the TextBox itself:
    e.Handled = true;
}