VS2010自己配置编译MFC项目

学习MFC中,但是用VS自动生成的项目包含的文件太多不易于理解,故自己建了一个空项目添加了.h.cpp文件进行编译。一开始总出错,提示说是神马没有入口……nndMFC还需要main()???设置编译选项:配置属性:常规:MFC使用,随便选一个静态动态均可。链接器:常规:启用增量链接:选使用不适用均可,但不能不选!!

附上hello world 代码:

hello.h:

#ifndef HELLO_H
#define HELLO_H

#include <afxwin.h>

class CMyApp : public CWinApp {
public:
	virtual BOOL InitInstance();
};

class CMainWindow : public CFrameWnd {
public:
	CMainWindow();

protected:
	afx_msg void OnPaint();
	DECLARE_MESSAGE_MAP()
};

#endif

hello.cpp:

#include "hello.h"

CMyApp my_app;

BOOL CMyApp::InitInstance() {
	m_pMainWnd = new CMainWindow;
	m_pMainWnd->ShowWindow(m_nCmdShow);
	m_pMainWnd->UpdateWindow();
	return TRUE;
}

BEGIN_MESSAGE_MAP(CMainWindow, CFrameWnd)
	ON_WM_PAINT()
END_MESSAGE_MAP()

CMainWindow::CMainWindow() {
	Create(NULL, _T("Hello World"));
}

void CMainWindow::OnPaint() {
	CPaintDC dc(this);

	CRect rect;
	GetClientRect(&rect);
	dc.DrawText(_T("Hello, MFC!"), -1, &rect, DT_SINGLELINE | DT_CENTER | DT_VCENTER);
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值