如何通过键入在 WPF 列表框中查找项目?
大多数列表框允许您通过键入显示文本的第一个字母来查找其中的项目。 如果输入的字母与多个项目匹配,那么您可以继续添加字母来缩小搜索范围。
我需要在 WPF ListBox
中执行此操作。 但是,这些项目不是纯字符串 - 它们是我使用 DataTemplate
呈现的自定义对象。 我希望有一种方法可以提供字符串值的路径,该路径应用于 ListBox
项的文本键盘导航。
这怎么可能?
Most list boxes allow you to find items within them by typing the first letters of the displayed text. If the typed letters match multiple items, then you can keep adding letters to narrow the search.
I need to do this in a WPF ListBox
. However, the items aren't plain strings -- they're custom objects that I present using a DataTemplate
. I'm hoping that there's a way I can provide a path to the string value that should be used for this textual keyboard navigation of the ListBox
items.
How is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将
IsTextSearchEnabled
设置为 true 并使用TextSearch.TextPath
附加属性。例如
You could try setting
IsTextSearchEnabled
to true and using theTextSearch.TextPath
attached property.e.g.