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

📄 dlg.cpp

📁 分子动力学的VC源码,可以方面的用语化学与材料计算方面的开发,希望有用.
💻 CPP
字号:
// dlg.cpp : implementation file
//

#include "stdafx.h"
#include "mds.h"
#include "dlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// dlg dialog


dlg::dlg(CWnd* pParent /*=NULL*/)
	: CDialog(dlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(dlg)
	lx = 5;
	wy = 5;
	hz = 22;
	chi = 500;
	wf = 0.01;
	wr = 0.01;
	//}}AFX_DATA_INIT
}


void dlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(dlg)
	DDX_Text(pDX, IDC_EDIT1, lx);
	DDX_Text(pDX, IDC_EDIT2, wy);
	DDX_Text(pDX, IDC_EDIT3, hz);
	DDX_Text(pDX, IDC_EDIT4, chi);
	DDX_Text(pDX, IDC_EDIT5, wf);
	DDX_Text(pDX, IDC_EDIT6, wr);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// dlg message handlers

⌨️ 快捷键说明

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