⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mytoolbar1.cpp

📁 这是书上的代码
💻 CPP
字号:
// Mytoolbar1.cpp: implementation of the CMytoolbar1 class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "paintobj.h"
#include "Mytoolbar1.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
IMPLEMENT_DYNCREATE(CMytoolbar1, CToolBar)

BEGIN_MESSAGE_MAP(CMytoolbar1, CToolBar)
	//{{AFX_MSG_MAP(CMytoolbar1)
	ON_WM_SHOWWINDOW()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

CMytoolbar1::CMytoolbar1()
{
}

CMytoolbar1::~CMytoolbar1()
{
}
void CMytoolbar1::OnShowWindow(BOOL bShow, UINT nStatus) 
{
//	CTool::OnShowWindow(bShow, nStatus);
	int a = 1;
	++a;
	// TODO: Add your message handler code here
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -