作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个页面,根据 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/
我是一名优秀的程序员,十分优秀!