📄 transpropertypage1.cpp
字号:
// TransPropertyPage1.cpp : implementation file
//
#include "stdafx.h"
#include "resource.h"
#include "TransPropertyPage1.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
IMPLEMENT_DYNCREATE(CTransPropertyPage, CPropertyPage)
/////////////////////////////////////////////////////////////////////////////
// CTransPropertyPage property page
CTransPropertyPage::CTransPropertyPage() : CPropertyPage(CTransPropertyPage::IDD)
{
//{{AFX_DATA_INIT(CTransPropertyPage)
m_rotationAngle = 0.0;
m_zoomRatio = 0.0;
//}}AFX_DATA_INIT
}
CTransPropertyPage::~CTransPropertyPage()
{
}
void CTransPropertyPage::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CTransPropertyPage)
DDX_Text(pDX, IDC_ROTATION_ANGLE, m_rotationAngle);
DDX_Text(pDX, IDC_ZOOM_RATIO, m_zoomRatio);
DDV_MinMaxDouble(pDX, m_zoomRatio, 1.e-003, 1000.);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CTransPropertyPage, CPropertyPage)
//{{AFX_MSG_MAP(CTransPropertyPage)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -