📄 ~cset.~cpp
字号:
// Cset.cpp : implementation file
//
#include "stdafx.h"
#include "HighWay.h"
#include "Cset.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCset dialog
CCset::CCset(CWnd* pParent /*=NULL*/)
: CDialog(CCset::IDD, pParent)
{
//{{AFX_DATA_INIT(CCset)
m_bjw = 4;
m_bjy = 15;
m_pn = 2;
m_xnw = 5;
m_xny = 12;
//}}AFX_DATA_INIT
}
void CCset::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCset)
DDX_Text(pDX, IDC_BJw_EDIT, m_bjw);
DDV_MinMaxInt(pDX, m_bjw, 0, 100);
DDX_Text(pDX, IDC_BJy_EDIT, m_bjy);
DDV_MinMaxInt(pDX, m_bjy, 0, 100);
DDX_Text(pDX, IDC_PN_EDIT, m_pn);
DDV_MinMaxInt(pDX, m_pn, 0, 100);
DDX_Text(pDX, IDC_XNw_EDIT, m_xnw);
DDV_MinMaxInt(pDX, m_xnw, 0, 100);
DDX_Text(pDX, IDC_XNy_EDIT, m_xny);
DDV_MinMaxInt(pDX, m_xny, 0, 100);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CCset, CDialog)
//{{AFX_MSG_MAP(CCset)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCset message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -