Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 XAML 窗口中有一个 Listbox 控件,它将在运行时显示大约 500 个项目。我需要使用 Windows 资源管理器等键盘浏览这些项目。例如在 Windows 资源管理器中,当我们键入一个键“a”时,它会自动选择一个以键a 开头的项目。这将为用户提供更多的可用性。有谁知道如何解决这个问题?提前致谢
您可以使用"TextSearch.TextPath"解决此问题。名称应该是您要在列表框中导航的属性。
<ListBox TextSearch.TextPath="Name" IsTextSearchEnabled="True"/>