在对话框类MFC程序中使用RichEdit

在对话框类MFC程序中使用RichEdit

在对话框类MFC程序中加入RichEdit后对话框会无法显示,只需在InitInstance()中调用AfxInitRichEdit( )在运行时初始化RichEdit即可。
MSDN描述如下:

AfxInitRichEdit
BOOL AFXAPI AfxInitRichEdit( );

Remarks

Call this function to initialize the rich edit control for the application. It will also initialize the common controls library, if the library hasn’t already been initialized for the process. If you use the rich edit control directly from your MFC application, you should call this function to assure that MFC has properly initialized the rich edit control runtime. If you use rich edit via CRichEditCtrl, CRichEditView, or CRichEditDoc, you don’t need to call this function.

你可能感兴趣的:(在对话框类MFC程序中使用RichEdit)