MFC源码解读最原始一个MFC程序,手写不用向导
Posted YuRi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MFC源码解读最原始一个MFC程序,手写不用向导相关的知识,希望对你有一定的参考价值。
从这一篇开始,详细记录一下MFC的源码解读
四个文件,分别为:
stdafx.h,stdafx.cpp,hello.h,hello.cpp
代码如下:
//stdafx.h #include <afxwin.h>
//stdafx.cpp #include "stdafx.h"
//hello.h class CMyWinApp:public CWinApp { public: BOOL InitInstance(); }; class CMyFrameWnd:public CFrameWnd { public: CMyFrameWnd(); };
//hello.cpp #include "stdafx.h" #include "hello.h" CMyWinApp theApp; BOOL CMyWinApp::InitInstance() { m_pMainWnd=new CMyFrameWnd(); m_pMainWnd->ShowWindow(m_nCmdShow); m_pMainWnd->UpdateWindow(); return TRUE; } CMyFrameWnd::CMyFrameWnd() { Create(NULL,"Hello MFC",WS_OVERLAPPEDWINDOW|WS_VSCROLL,CRect(40,60,900,300),NULL,"MainMenu"); }
以上是关于MFC源码解读最原始一个MFC程序,手写不用向导的主要内容,如果未能解决你的问题,请参考以下文章
VS2010-MFC(利用MFC向导生成单文档应用程序框架)