seisunshisetdlg.cpp

来自「vc 和mapobjects地理信息系统组件开发 很有启发意义和参考价值」· C++ 代码 · 共 51 行

CPP
51
字号
// SeiSunShiSetDlg.cpp : implementation file
//

#include "stdafx.h"
#include "mapper.h"
#include "SeiSunShiSetDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSeiSunShiSetDlg dialog


CSeiSunShiSetDlg::CSeiSunShiSetDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CSeiSunShiSetDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CSeiSunShiSetDlg)
	m_nMax = 0;
	m_nMin = 0;
	m_nUse = 0;
	//}}AFX_DATA_INIT
}


void CSeiSunShiSetDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSeiSunShiSetDlg)
	DDX_Text(pDX, IDC_MAX, m_nMax);
	DDV_MinMaxInt(pDX, m_nMax, 1, 12);
	DDX_Text(pDX, IDC_MIN, m_nMin);
	DDV_MinMaxInt(pDX, m_nMin, 1, 12);
	DDX_Text(pDX, IDC_USE, m_nUse);
	DDV_MinMaxInt(pDX, m_nUse, 1, 12);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CSeiSunShiSetDlg message handlers

⌨️ 快捷键说明

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