Reputation: 18221
According to my understanding if I need design MFC form with button I have only one possibility - write everything in code editor. There is no designer. Except cases when I need design dialog form. I can use designer and generate resources for dialogs. But in case normal Frame there is possibility to drop buttons in designer window. Is that truth?
Upvotes: 0
Views: 537
Reputation: 458
Upvotes: 0
Reputation: 3636
If you want to use a form as a main window, create your project with a CFormView
as a base class. You can select that inside the new project wizard. Then you get a dialog resource for that view. It works just like a dialog.
Upvotes: 2