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

📄 exteriorprops.cpp

📁 一个2D电磁场FEM计算的VC++源程序
💻 CPP
字号:
// ExteriorProps.cpp : implementation file
//

#include "stdafx.h"
#include "femme.h"
#include "ExteriorProps.h"

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

/////////////////////////////////////////////////////////////////////////////
// CExteriorProps dialog


CExteriorProps::CExteriorProps(CWnd* pParent /*=NULL*/)
	: CDialog(CExteriorProps::IDD, pParent)
{
	//{{AFX_DATA_INIT(CExteriorProps)
	m_Ri = 0.0;
	m_Ro = 0.0;
	m_Zo = 0.0;
	//}}AFX_DATA_INIT
}


void CExteriorProps::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CExteriorProps)
	DDX_Text(pDX, IDC_RI, m_Ri);
	DDX_Text(pDX, IDC_RO, m_Ro);
	DDX_Text(pDX, IDC_ZO, m_Zo);
	//}}AFX_DATA_MAP
	DDX_Control(pDX, IDC_RO, m_IDC_RO);
	DDX_Control(pDX, IDC_RI, m_IDC_RI);
	DDX_Control(pDX, IDC_ZO, m_IDC_ZO);
}


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

/////////////////////////////////////////////////////////////////////////////
// CExteriorProps message handlers

⌨️ 快捷键说明

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