📄 fluidparameter.cpp
字号:
// FluidParameter.cpp : implementation file
//
#include "stdafx.h"
#include "储层损害矿场评价软件.h"
#include "FluidParameter.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFluidParameter dialog
CFluidParameter::CFluidParameter(CWnd* pParent /*=NULL*/)
: CDialog(CFluidParameter::IDD, pParent)
{
//{{AFX_DATA_INIT(CFluidParameter)
m_D = 0.0;
m_B = 0.0;
m_belt = 0.0;
m_rhs = 0.0;
m_vis = 0.0;
//}}AFX_DATA_INIT
}
void CFluidParameter::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFluidParameter)
DDX_Text(pDX, IDC_EDIT_D, m_D);
DDX_Text(pDX, IDC_EDIT_B, m_B);
DDX_Text(pDX, IDC_EDIT_BELT, m_belt);
DDX_Text(pDX, IDC_EDIT_RHS, m_rhs);
DDX_Text(pDX, IDC_EDIT_VIS, m_vis);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFluidParameter, CDialog)
//{{AFX_MSG_MAP(CFluidParameter)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFluidParameter message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -