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

📄 dlginductorpro.cpp

📁 本人买的<<VC++项目开发实例>>源代码配套光盘.
💻 CPP
字号:
// dlgInductorPro.cpp : implementation file
//

#include "stdafx.h"
#include "DrawChip.h"
#include "dlgInductorPro.h"

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

/////////////////////////////////////////////////////////////////////////////
// CdlgInductorPro dialog


//##ModelId=3E18E0E5015F
CdlgInductorPro::CdlgInductorPro(CWnd* pParent /*=NULL*/)
	: CDialog(CdlgInductorPro::IDD, pParent)
{
	//{{AFX_DATA_INIT(CdlgInductorPro)
	m_strCompacity = _T("");
	m_strFrequence = _T("");
	m_strName = _T("");
	m_strPressure = _T("");
	m_strWork = _T("");
	//}}AFX_DATA_INIT
}


//##ModelId=3E18E0E501CC
void CdlgInductorPro::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CdlgInductorPro)
	DDX_Text(pDX, IDC_INDUCTOR_COMPACITY, m_strCompacity);
	DDX_Text(pDX, IDC_INDUCTOR_FREQUENCE, m_strFrequence);
	DDX_Text(pDX, IDC_INDUCTOR_NAME, m_strName);
	DDX_Text(pDX, IDC_INDUCTOR_PRESSURE, m_strPressure);
	DDX_Text(pDX, IDC_INDUCTOR_WORK, m_strWork);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CdlgInductorPro message handlers

⌨️ 快捷键说明

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