test.cpp

来自「本程序是采用VC++和Mysql编写的一款油量换算软件」· C++ 代码 · 共 44 行

CPP
44
字号
// Test.cpp : implementation file
//

#include "stdafx.h"
#include "OilTrans.h"
#include "Test.h"

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

/////////////////////////////////////////////////////////////////////////////
// CTest

CTest::CTest()
{
}

CTest::~CTest()
{
}


BEGIN_MESSAGE_MAP(CTest, CTabCtrl)
	//{{AFX_MSG_MAP(CTest)
	ON_WM_CTLCOLOR()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CTest message handlers

HBRUSH CTest::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 
{
	HBRUSH hbr = CTabCtrl::OnCtlColor(pDC, pWnd, nCtlColor);
	
	// TODO: Change any attributes of the DC here
	
	// TODO: Return a different brush if the default is not desired
	return hbr;
}

⌨️ 快捷键说明

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