✅ How do I add system.windows.forms?
I’m still really new to c# but it’s my understanding that I need to add system.windows.forms to visual studio before I can make use of it to add a button (my end goal). How do I add it to visual studio?
3 Replies
Create a new app with Visual Studio tutorial - Windows Forms .NET
Follow this tutorial to learn how to create a new Windows Forms app for .NET with Visual Studio 2019.
And if you want to just enable Winforms, it's enabled in the csproj in .NET https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props-desktop#enable-net-desktop-sdk
Specifically
Thank you!