Reputation: 396
I want to be able to edit a c# form in a designer view that resembles the following picture:
I created a default windows form C# program in VS. When I right click Form1.cs and I choose
I am presented with instead of the expected drag and drop form editor.
I tried pressing shift+F7 in the open form 1 but it brings me back to the page filled with code.
Does anyone know how to open the GUI drag and drop editor in VS?
Upvotes: 0
Views: 1450
Reputation: 396
I had created a C# program with the .net core instead of the .net framework. The GUI editor is only available for the windows form applications created with the .net framework.
Thanks to @Jimi for helping me find the answer in the comments section.
Upvotes: 1