dlgswitchpro.cpp

来自「电子元器件绘制系统」· C++ 代码 · 共 48 行

CPP
48
字号
// dlgSwitchPro.cpp : implementation file
//

#include "stdafx.h"
#include "DrawChip.h"
#include "dlgSwitchPro.h"

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

/////////////////////////////////////////////////////////////////////////////
// CdlgSwitchPro dialog


//##ModelId=3E18E0E402EF
CdlgSwitchPro::CdlgSwitchPro(CWnd* pParent /*=NULL*/)
	: CDialog(CdlgSwitchPro::IDD, pParent)
{
	//{{AFX_DATA_INIT(CdlgSwitchPro)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


//##ModelId=3E18E0E402F1
void CdlgSwitchPro::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CdlgSwitchPro)
	DDX_Text(pDX, IDC_SWITCH_NAME, m_strName);
	DDX_Text(pDX, IDC_SWITCH_TYPE, m_strType);
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CdlgSwitchPro message handlers

⌨️ 快捷键说明

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