📄 modification.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 + -