📄 dlgdiodepro.cpp
字号:
// dlgDiodePro.cpp : implementation file
//
#include "stdafx.h"
#include "DrawChip.h"
#include "dlgDiodePro.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CdlgDiodePro dialog
//##ModelId=3E18E0E502AA
CdlgDiodePro::CdlgDiodePro(CWnd* pParent /*=NULL*/)
: CDialog(CdlgDiodePro::IDD, pParent)
{
//{{AFX_DATA_INIT(CdlgDiodePro)
m_strFrequence = _T("");
m_strName = _T("");
m_strPower = _T("");
m_strSwitch = _T("");
m_strType = _T("");
//}}AFX_DATA_INIT
}
//##ModelId=3E18E0E50316
void CdlgDiodePro::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CdlgDiodePro)
DDX_Text(pDX, IDC_DIODE_FREQUENCE, m_strFrequence);
DDX_Text(pDX, IDC_DIODE_NAME, m_strName);
DDX_Text(pDX, IDC_DIODE_POWER, m_strPower);
DDX_Text(pDX, IDC_DIODE_SWITCH, m_strSwitch);
DDX_Text(pDX, IDC_DIODE_TYPE, m_strType);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CdlgDiodePro, CDialog)
//{{AFX_MSG_MAP(CdlgDiodePro)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CdlgDiodePro message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -