dlginductorpro.cpp
来自「电子元器件绘制系统」· C++ 代码 · 共 54 行
CPP
54 行
// 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 + =
减小字号Ctrl + -
显示快捷键?