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

📄 wellparameter.cpp

📁 石油行业油井损害软件,有详细的油井损害模型,对石油建模有重要帮助
💻 CPP
字号:
// WellParameter.cpp : implementation file
//

#include "stdafx.h"
#include "储层损害矿场评价软件.h"
#include "WellParameter.h"

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

/////////////////////////////////////////////////////////////////////////////
// CWellParameter dialog


CWellParameter::CWellParameter(CWnd* pParent /*=NULL*/)
	: CDialog(CWellParameter::IDD, pParent)
{
	//{{AFX_DATA_INIT(CWellParameter)
	m_ro = 0.0;
	m_rw = 0.0;
	m_s = 0.0;
	m_wsc = 0.0;
	m_rkfpc = 0.0;
	//}}AFX_DATA_INIT
}


void CWellParameter::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CWellParameter)
	DDX_Text(pDX, IDC_EDIT_RO, m_ro);
	DDX_Text(pDX, IDC_EDIT_RW, m_rw);
	DDX_Text(pDX, IDC_EDIT_S, m_s);
	DDX_Text(pDX, IDC_EDIT_WSC, m_wsc);
	DDX_Text(pDX, IDC_EDIT_RKFPC, m_rkfpc);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CWellParameter message handlers

⌨️ 快捷键说明

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