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

📄 modification.cpp

📁 是一款车库模拟控制系统,可以实现对当前车库存车状态的实时描述.
💻 CPP
字号:
// Modification.cpp : implementation file
//

#include "stdafx.h"
#include "garage.h"
#include "Modification.h"

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

/////////////////////////////////////////////////////////////////////////////
// CModification dialog


CModification::CModification(CWnd* pParent /*=NULL*/)
	: CDialog(CModification::IDD, pParent)
{
	//{{AFX_DATA_INIT(CModification)
	m_chargeForSmall = 0;
	m_chargeForMiddle = 0;
	m_chargeForBig = 0;
	m_chargeForGood = 0;
	//}}AFX_DATA_INIT
}


void CModification::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CModification)
	DDX_Text(pDX, IDC_EDIT_CHARGE_SMALL, m_chargeForSmall);
	DDX_Text(pDX, IDC_EDIT_CHARGE_MIDDLE, m_chargeForMiddle);
	DDX_Text(pDX, IDC_EDIT_CHARGE_BIG, m_chargeForBig);
	DDX_Text(pDX, IDC_EDIT_CHARGE_GOOD, m_chargeForGood);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CModification, CDialog)
	//{{AFX_MSG_MAP(CModification)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CModification message handlers

int CModification::DoModal() 
{
	return CDialog::DoModal();
}

⌨️ 快捷键说明

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