wpf listview 中的 keydown 不起作用
如果我使用 wpf 列表框并在没有数据模板的情况下填充一些项目,则用户可以通过键入前几个字母来选择一个项目。
如果您使用列表视图或数据模板,这将不再起作用。
一个人会怎样做呢?
If I use a wpf listbox and fill it with some items without datatemplate, the user can select an item by typing the first few letters.
If you use a listview or a datatemplate this doesn't work anymore.
How would one do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
挂钩 PreviewKeyDown 事件并循环访问项目。如果您遇到以按下的键开头的项目,请将其设置为已选择。
Hook into the PreviewKeyDown event and loop through the items. If you encounter an item that begins with the key that was pressed, set it as selected.
在列表中添加预览按键处理程序:
添加扩展方法以使 linq 工作:
Add preview key down handler on list:
Add extension method to make linq work: