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

📄 seisunshisetdlg.cpp

📁 vc 和mapobjects地理信息系统组件开发 很有启发意义和参考价值
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -