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

📄 dlgsetco.cpp

📁 电子画图板
💻 CPP
字号:
// DlgSetCO.cpp : implementation file
//

#include "stdafx.h"
#include "eboard.h"
#include "DlgSetCO.h"

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

/////////////////////////////////////////////////////////////////////////////
// DlgSetCO dialog


DlgSetCO::DlgSetCO(CWnd* pParent /*=NULL*/)
	: CDialog(DlgSetCO::IDD, pParent)
{
	//{{AFX_DATA_INIT(DlgSetCO)
	m_uiOX = 0;
	m_uiOY = 0;
	m_uiXS = 0;
	m_uiYS = 0;
	//}}AFX_DATA_INIT
}


void DlgSetCO::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(DlgSetCO)
	DDX_Text(pDX, IDC_SETCOOX, m_uiOX);
	DDX_Text(pDX, IDC_SETCOOY, m_uiOY);
	DDX_Text(pDX, IDC_SETCOXS, m_uiXS);
	DDV_MinMaxUInt(pDX, m_uiXS, 1, 1000);
	DDX_Text(pDX, IDC_SETCOYS, m_uiYS);
	DDV_MinMaxUInt(pDX, m_uiYS, 1, 1000);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// DlgSetCO message handlers

⌨️ 快捷键说明

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