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

📄 dlgtransistor.cpp

📁 电子元器件绘制系统
💻 CPP
字号:
// dlgTransistor.cpp : implementation file
//

#include "stdafx.h"
#include "DrawChip.h"
#include "dlgTransistor.h"

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

/////////////////////////////////////////////////////////////////////////////
// CdlgTransistor dialog


//##ModelId=3E18E0E40212
CdlgTransistor::CdlgTransistor(CWnd* pParent /*=NULL*/)
	: CDialog(CdlgTransistor::IDD, pParent)
{
	//{{AFX_DATA_INIT(CdlgTransistor)
	m_Frequence = _T("");
	m_Name = _T("");
	m_Power = _T("");
	m_Switch = _T("");
	m_Type = _T("");
	//}}AFX_DATA_INIT
}


//##ModelId=3E18E0E40282
void CdlgTransistor::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CdlgTransistor)
	DDX_Text(pDX, IDC_TRANSISTOR_FREQUENCE, m_Frequence);
	DDX_Text(pDX, IDC_TRANSISTOR_NAME, m_Name);
	DDX_Text(pDX, IDC_TRANSISTOR_POWER, m_Power);
	DDX_Text(pDX, IDC_TRANSISTOR_SWITCH, m_Switch);
	DDX_Text(pDX, IDC_TRANSISTOR_TYPE, m_Type);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CdlgTransistor message handlers

⌨️ 快捷键说明

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