pointnum.cpp

来自「测绘行业中用于计算两种直角坐标系下坐标转换需要的七参数。该方法具有通用性」· C++ 代码 · 共 45 行

CPP
45
字号
// PointNum.cpp : implementation file
//

#include "stdafx.h"
#include "CooTran.h"
#include "PointNum.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CPointNum dialog


CPointNum::CPointNum(CWnd* pParent /*=NULL*/)
	: CDialog(CPointNum::IDD, pParent)
{
	//{{AFX_DATA_INIT(CPointNum)
	m_nPointNum = 4;
	//}}AFX_DATA_INIT
}


void CPointNum::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CPointNum)
	DDX_Text(pDX, IDC_EDIT_NUM, m_nPointNum);
	DDV_MinMaxInt(pDX, m_nPointNum, 3, 10000);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CPointNum, CDialog)
	//{{AFX_MSG_MAP(CPointNum)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CPointNum message handlers

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?