Can anyone recommend a .NET winforms control that offers similar functionality to the address bar in Windows Explorer, auto-completing file paths?
任何人都可以推荐一个.NET winforms控件,它提供与Windows资源管理器中的地址栏类似的功能,自动完成文件路径?
I'm not too bothered about Vista-style breadcrumbs - quite happy with a simple XP-style textbox-only appearance, but I'd like it to offer auto-complete suggestions based on the file system.
我对Vista风格的面包屑并不太感兴趣 - 对于简单的XP风格的文本框外观非常满意,但我希望它能够根据文件系统提供自动完成的建议。
1 个解决方案
#1
3
The built-in ComboBox has an AutoCompleteSource property which can be set to FileSystem.
内置的ComboBox有一个AutoCompleteSource属性,可以设置为FileSystem。
#1
3
The built-in ComboBox has an AutoCompleteSource property which can be set to FileSystem.
内置的ComboBox有一个AutoCompleteSource属性,可以设置为FileSystem。