transpropertypage1.cpp
来自「快速原型制造分层切片源代码,适用于高温合金.」· C++ 代码 · 共 49 行
CPP
49 行
// 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 + =
减小字号Ctrl + -
显示快捷键?