Reputation: 1127
Good Day Everyone. Above is the image of the templates I have in my newly installed Visual Studio 2015. I installed it yesterday and noticed that some templates are missing. Specifically Windows Form. I don't know why it became like this.
What do you think is the reason behind this? And what should I do. Thanks.
Upvotes: 4
Views: 4746
Reputation: 2913
Close Visual Studio
Open "visual studio command prompt" and run the command:
devenv /installvstemplates
Upvotes: 1
Reputation: 81
I had a similar problem and solved it by installing the "C++/CLI support" under the Desktop Development with C++.
The reason may be due to Windows Forms running on a C++ framework. Without the C++/CLI Support installed, the Windows Forms might not run.
Upvotes: 4