⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 defellipse.cpp

📁 测绘行业:四种不同参数的椭球面上的几种坐标系的变换
💻 CPP
字号:
// DefEllipse.cpp : implementation file
//

#include "stdafx.h"
#include "Ellipse.h"
#include "DefEllipse.h"

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

/////////////////////////////////////////////////////////////////////////////
// DefEllipse dialog


DefEllipse::DefEllipse(CWnd* pParent /*=NULL*/)
	: CDialog(DefEllipse::IDD, pParent)
{
	//{{AFX_DATA_INIT(DefEllipse)
	m_ea = 0;
	m_eb = 0;
	//}}AFX_DATA_INIT
}


void DefEllipse::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(DefEllipse)
	DDX_Text(pDX, IDC_EDITA, m_ea);
	DDV_MinMaxDouble(pDX, m_ea, 6370000., 6380000.);
	DDX_Text(pDX, IDC_EDITB, m_eb);
	DDV_MinMaxDouble(pDX, m_eb, 6350000.000, 6360000.000);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(DefEllipse, CDialog)
	//{{AFX_MSG_MAP(DefEllipse)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

///////////////////////////////////////////////////////
// DefEllipse message handlers

void DefEllipse::OnOK() 
{
	// TODO: Add extra validation here	
	CDialog::OnOK();
}

⌨️ 快捷键说明

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