Reputation: 5037
I have just installed Visual Studio 2012 Professional Edition and I'm planning to write my first Hello World application but I can't find the designer view !
How can I switch to the designer mode in Visual C++ 2012 Professional?
Upvotes: 6
Views: 9897
Reputation: 21
I found that double-clicking the header file (as shown in the Solution Explorer) opens designer view where applicable. To get the actual template, I used an online template through VS2015. Sorry if this response isn't the best, I just got a hang of it earlier today...
Upvotes: 1
Reputation: 42085
Maybe you are used to C#, where when you have let's say MyForm.cs
and you just open it, it opens MyForm.cs [Design]
window by default, in which you can design your dialog.
In Visual C++, the appearance of the dialog is stored in the resource file, thus you need to double click on Win32Project3.rc
which will switch your left pane to the Resource view. Then you will see more resource types (they look like folders) and under Dialog you will find your dialog.
Upvotes: 8