我正在学习在Visual Studio 2017中使用MFC。我按照以下说明在一个空项目中创建一个窗口(MFC应用程序)。 https://www.tutorialspoint.com/mfc/mfc_windows_fundamentals.htm 当我运行它时,我在afxrendertarget.h中遇到了这些错误
我在互联网上搜索,但没有希望。 请帮我
我在这里的错误:
incomplete type is not allowed
expected a ')'
`member "CD2DPathGeometry::CRenderTarget" is not a type name
member "CD2DResource::BOOL" is not a type name.
我的代码在这里
#include <iostream>
#include <afxwin.h>
class MyFrame : public CFrameWnd {
public :
MyFrame() {
Create(NULL, _T("MFC EXAMPLE"));
}
};
class Example : public CWinApp {
BOOL InitInstance() {
MyFrame * frame = new MyFrame();
m_pMainWnd = frame;
frame->ShowWindow(SW_NORMAL);
frame->UpdateWindow();
return true;
}
};
Example theApp;