📄 syspropertypage4.cpp
字号:
// SysPropertyPage4.cpp : implementation file
//
#include "stdafx.h"
#include "slsprj.h"
#include "SysPropertyPage4.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSysPropertyPage4 property page
IMPLEMENT_DYNCREATE(CSysPropertyPage4, CPropertyPage)
CSysPropertyPage4::CSysPropertyPage4() : CPropertyPage(CSysPropertyPage4::IDD)
{
//{{AFX_DATA_INIT(CSysPropertyPage4)
m_zeroPosX = 0.0;
m_zeroPosY = 0.0;
m_platformLength = 0.0;
m_platformWidth = 0.0;
m_startPosX = 0.0;
m_startPosY = 0.0;
//}}AFX_DATA_INIT
}
CSysPropertyPage4::~CSysPropertyPage4()
{
}
void CSysPropertyPage4::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSysPropertyPage4)
DDX_Text(pDX, IDC_ZEROPOS_X, m_zeroPosX);
DDX_Text(pDX, IDC_ZEROPOS_Y, m_zeroPosY);
DDX_Text(pDX, IDC_LENGTH, m_platformLength);
DDX_Text(pDX, IDC_WIDTH, m_platformWidth);
DDX_Text(pDX, IDC_STARTPOS_X, m_startPosX);
DDX_Text(pDX, IDC_STARTPOS_Y, m_startPosY);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSysPropertyPage4, CPropertyPage)
//{{AFX_MSG_MAP(CSysPropertyPage4)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSysPropertyPage4 message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -