尝试在空项目中创建窗口(MFC应用程序)时出现afxrendertarget.h错误-VS C ++ 2017

时间:2019-03-28 14:29:56

标签: c++ mfc

我正在学习在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;

0 个答案:

没有答案