📄 dlginductorpro.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 + -