文件系统树视图

发布于 2024-07-14 15:14:33 字数 64 浏览 7 评论 0原文

是否有一个控件可以让我单击 FS 上的文件夹? 就像右键单击文件并在资源管理器中单击“浏览”后的左侧选项卡一样?

Is there a control that will allow me to click through folders on the FS? Like the left tab after you right click a file and hit explore in explorer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

猥︴琐丶欲为 2024-07-21 15:14:33

我认为没有一个控件可以为您执行此操作,但使用 TreeView 控件相对容易。 查看此示例

I don't think there is a control to do this for you, but it's relatively easy with the TreeView control. Check out this example.

撩起发的微风 2024-07-21 15:14:33

如果您询问是否有 WinForms/WPF 控件 允许您执行此操作,那么答案是否定的。 没有这样的内置控件可用于此目的。

但是,您可以使用 OpenFileDialog 打开一个模式对话框来执行此操作。

using (var diag = new OpenFileDialog()) {
  var result = diag.ShowDialog();
  var fileName = diag.FileName;
}

If you're asking is there a WinForms/WPF control that will allow you to do this then the answer is no. There is no such built-in control that can be used for this purpose.

You can however open up a modal dialog which does this by using the OpenFileDialog.

using (var diag = new OpenFileDialog()) {
  var result = diag.ShowDialog();
  var fileName = diag.FileName;
}
离旧人 2024-07-21 15:14:33

我写了一个库,也许可以帮助你。 您可以在以下位置找到它: http://gong-shell.sourceforge.net/

您的控件正在寻找的是ShellTreeView。

I have written a library that might be able to help you. You can find it at: http://gong-shell.sourceforge.net/

The control you're looking for is the ShellTreeView.

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