FolderBrowserDialog not found - WPF

本文关键字:WPF found not FolderBrowserDialog | 更新日期: 2023-09-27 18:23:46

标题说明了这一切,我甚至尝试添加using System.Windows.Forms,但它仍然告诉我找不到FolderBrowserDialog

我能做什么吗?还有其他方法可以浏览目录吗?

FolderBrowserDialog not found - WPF

您还需要添加对System.Windows.Forms.dll的引用。

您可以在FolderBrowserDialog:的文档中看到这一点

命名空间:System.Windows.Forms

程序集:System.Windows.Forms(在System.Windows.Fforms.dll中)

命名空间是通过using添加的,程序集是需要引用的。