Reputation: 12025
I have existing project. I tried to add new empty form in this, but I have limited choose of windows form that mean to inheriting. But I need just simple form.
I use VS 2017
Upvotes: 6
Views: 10489
Reputation: 39
Try this
Open Solution Explorer
Right click on your Project's Name.
Add.
Windows Form.
If you still don't see it, you might be missing the Dot Net desktop development Component.
Upvotes: 1
Reputation: 2871
It seems like you didn't install the required components. To do this, close VS, run your Visual Studio Installer (you probably installed VS through it), click modify for your VS Version and make sure that .Net desktop development is checked:
Then launch the installation by hitting Modify and start VS again. If you now want to create a new Project it should look something like that:
Upvotes: 8