在WPF应用程序中使用FolderBrowserDialog

发布于 2024-10-09 18:38:47 字数 262 浏览 1 评论 0原文

我有一个 WPF 应用程序,需要让用户访问其中的目录。我已经搜索到了如何将 Windows 窗体集成到 WPF 中,并且找到了有关如何将窗体控件集成到我的 xaml 中的各种信息,但是,集成一个FolderBrowserDialog。

我是一名资深程序员,但对 .net 非常陌生(事实上是第二天),我相信我找不到关于实现此功能的良好信息,只是因为我无法确定FolderBrowserDialog 的名称/类型是什么。

哦,我正在使用 c# 和 Visual Studio 2008

I have a WPF application that I need to have users access directories in. I have searched to the end of the world on how to integrate windows forms into WPF and have found all kinds of information on how to integrate form controls into my xaml, however, integrating a FolderBrowserDialog.

I am veteran programmer, but very new to .net (2nd day in fact), and I believe I can not find good information on immplementing this simply because I can not determine what the name/type is for a FolderBrowserDialog.

Oh, and I am using c# and Visual Studio 2008

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

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

发布评论

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

评论(2

千秋岁 2024-10-16 18:38:47

您需要添加对 System.Windows.Forms.dll 的引用,然后使用 System.Windows.Forms.FolderBrowserDialog

添加 using WinForms = System.Windows.Forms; 将会很有帮助。

You need to add a reference to System.Windows.Forms.dll, then use the System.Windows.Forms.FolderBrowserDialog class.

Adding using WinForms = System.Windows.Forms; will be helpful.

穿透光 2024-10-16 18:38:47

如果我没记错的话,您正在寻找 FolderBrowserDialog (因此命名):

var dialog = new System.Windows.Forms.FolderBrowserDialog();
System.Windows.Forms.DialogResult result = dialog.ShowDialog();

另请参阅此 SO 线程:打开目录对话框

If I'm not mistaken you're looking for the FolderBrowserDialog (hence the naming):

var dialog = new System.Windows.Forms.FolderBrowserDialog();
System.Windows.Forms.DialogResult result = dialog.ShowDialog();

Also see this SO thread: Open directory dialog

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