gpt4 book ai didi

wpf - 将 PreviewKeyDown 中收到的键转换为字符串

转载 作者:行者123 更新时间:2023-12-04 14:43:24 26 4
gpt4 key购买 nike

我在窗口上使用 PreviewKeyDown 事件来接收来自条形码扫描器的所有键。 KeyEventArgs 是一个枚举,并没有给我实际的字符串。我不想使用 TextInput,因为某些键可能由控件本身处理,并且可能不会冒泡到 TextInput 事件。

我正在寻找一种方法将我在 PreviewKeyDown 中获得的键转换为实际字符串。我查看了 InputManager、TextCompositionManager 等,但我没有找到提供键列表并返回字符串的方法。TextCompositionManager 或其他东西必须将这些键转换为 TextInput 中可用的字符串。

最佳答案

这是我正在使用的事件。 KeyDown 获取键,PreviewTextInput 获取实际文本。因此,键之间的某处正在转换为文本。

 public Window1()
{
InitializeComponent();
TextCompositionManager.AddPreviewTextInputStartHandler(this, new TextCompositionEventHandler(Window_PreviewTextInput));
this.AddHandler(Window.KeyDownEvent, new System.Windows.Input.KeyEventHandler(Window_KeyDown), true);
}

private void Window_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
}

private void Window_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
}

关于wpf - 将 PreviewKeyDown 中收到的键转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1495092/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com