Windows表单是否具有用于浏览驱动器,目录,文件的控件
回到一天之后,Visual Studio 6具有:
drivelistbox
dirlistbox
filelistbox
Windows表单是否具有类似的内置?从vs6导入它(我遇到了一些诸如VB6兼容性或向后兼容性之类的术语,但我不知道该如何实施),
如果不可能,您是否可以指出我一些更现代的解决方案,该解决方案是一种可以启用的组件用户浏览他的文件系统?
Back in a day, Visual Studio 6 had:
DriveListBox
DirListBox
FileListBox
Does Windows Forms have something similar built-in, or is there a way to import it from VS6 (I came across some terms like VB6 compatibility or backward compatibility or something, but I don't know how to implement it)
If it's not possible, can you point me to some more modern solution, a component that would enable user to browse his file system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚发现了FolderBrowserDialog 及其实现:
这会做得很好。
I just found out about FolderBrowserDialog and the implementation:
This will do nicely.