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

📄 input.cpp

📁 预测油田开发中是否出砂的软件
💻 CPP
字号:
// InPut.cpp : implementation file
//

#include "stdafx.h"
#include "sandpred.h"
#include "InPut.h"

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

/////////////////////////////////////////////////////////////////////////////
// CInPut dialog


CInPut::CInPut(CWnd* pParent /*=NULL*/)
	: CDialog(CInPut::IDD, pParent)
{
	//{{AFX_DATA_INIT(CInPut)
	m_edit1 = 0.0f;
	m_edit10 = 0.0f;
	m_edit11 = 0.0f;
	m_edit2 = 0.0f;
	m_edit3 = 0.0f;
	m_edit5 = 0.0f;
	m_edit6 = 0.0f;
	m_edit7 = 0.0f;
	m_edit8 = 0.0f;
	m_edit9 = 0.0f;
	m_edit4 = 0.0f;
	//}}AFX_DATA_INIT
}


void CInPut::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CInPut)
	DDX_Text(pDX, IDC_EDIT1, m_edit1);
	DDX_Text(pDX, IDC_EDIT10, m_edit10);
	DDX_Text(pDX, IDC_EDIT11, m_edit11);
	DDX_Text(pDX, IDC_EDIT2, m_edit2);
	DDX_Text(pDX, IDC_EDIT3, m_edit3);
	DDX_Text(pDX, IDC_EDIT5, m_edit5);
	DDX_Text(pDX, IDC_EDIT6, m_edit6);
	DDX_Text(pDX, IDC_EDIT7, m_edit7);
	DDX_Text(pDX, IDC_EDIT8, m_edit8);
	DDX_Text(pDX, IDC_EDIT9, m_edit9);
	DDX_Text(pDX, IDC_EDIT4, m_edit4);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CInPut message handlers

⌨️ 快捷键说明

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