gpt4 book ai didi

c# - 如何在 KeyDown 事件期间捕获 TextBox 的文本?

转载 作者:行者123 更新时间:2023-11-30 20:07:23 28 4
gpt4 key购买 nike

我正在尝试编写一个页面,根据 textbox 的内容过滤 ListBox。我已经让所有其他东西正常工作,但我希望 ListBox 对 TextBox 中发生的每个 KeyDown 事件应用过滤器。问题是,当我捕获 KeyDown 事件然后尝试查看 TextBox.Text 属性时,它仍然是空的。我想这是因为 TextBox 可能只在失去焦点时更新 Text 属性。

关于如何在 KeyDown 事件期间获取 TextBox 中的当前文本的任何想法,而不必在每个 KeyDown< 期间捕获和重建字符数组?

谢谢!

最佳答案

Manual :

For keyboard input, WPF first sends the appropriate KeyDown/KeyUp events. If those events are not handled and the key is textual (rather than a control key such as directional arrows or function keys), then a TextInput event is raised.

在 KeyDown 事件中,您可以捕获按下的键:

private void OnKeyDownHandler(object sender, KeyEventArgs e)
{
Console.WriteLine(e.Key);
}

事件退出后,按下的键被添加到.Text属性中,因此下次引发KeyDown事件时,您可以从.Text<中读取之前输入的字符.

关于c# - 如何在 KeyDown 事件期间捕获 TextBox 的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8583576/

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