Reputation: 584
I"m a complete noob in Visual Studio.
I'm trying to write a simple app using WPF. I need a dialog that would pick a folder.
I know that WPF doesn't have one, and I need to use Windows.Forms with their FolderBrowserDialog. I need to add Widnows.Forms framework to references so that I could say using System.Windows.Forms;
and then just do this dialog. However when I'm trying to follow the instructions, I do not see any Windows.Forms here, except for what's on the image. And even if I add those, it still doesn't take using System.Windows.Forms;
What should I do?
Upvotes: 0
Views: 1279
Reputation: 3670
<UseWindowsForms>true</UseWindowsForms>
FolderBrowserDialog folderBrowserDialog = new FolderBrowserDialog();
private void Button_Click(object sender, RoutedEventArgs e)
{
using FolderBrowserDialog folderBrowserDialog = new FolderBrowserDialog();
{
folderBrowserDialog.ShowDialog();
}
}
Property
->Application
->General
->Windows Forms
->Enable Windows Forms for this Project
in the .net6 project.Upvotes: 2