Search code examples
visual-studiovisual-c++mfcwysiwygdocument-view

MFC WYSIWYG editor


I want to make an application in Visual C++ 2012 using MFC frameworks using Document/View structure; I want edit my view (that is the main window) with an editor, not handcoding, but Visual Studio seems that can edit in WYSIWYG mode just dialog boxes; I don't want to make a 'dialog based application', I want to make a Document/View application and edit my View with an editor WYSIWYG; Any solution?


Solution

  • You need to use CFormView as a base class when you creating your MFC application. CFormView

    If you already have a project, then add a new form using the class wizard. Select CFormView as a base class.

    When you open Resource View your new form will be listed in "Dialog" folderCFormView editor