Windows表单是否具有用于浏览驱动器,目录,文件的控件

发布于 2025-01-18 19:24:49 字数 287 浏览 1 评论 0原文

回到一天之后,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

茶底世界 2025-01-25 19:24:49

我刚刚发现了FolderBrowserDialog 及其实现:

    var d = new FolderBrowserDialog();
    d.ShowDialog();

这会做得很好。

I just found out about FolderBrowserDialog and the implementation:

    var d = new FolderBrowserDialog();
    d.ShowDialog();

This will do nicely.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文