📄 conclusion.cpp
字号:
// Conclusion.cpp : implementation file
//
#include "stdafx.h"
#include "HtacBall.h"
#include "Conclusion.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CConclusion dialog
CConclusion::CConclusion(CWnd* pParent /*=NULL*/)
: CDialog(CConclusion::IDD, pParent)
{
//{{AFX_DATA_INIT(CConclusion)
m_con = _T("");
m_heatbal = _T("");
m_nowel = _T("");
m_power = _T("");
m_rege = _T("");
//}}AFX_DATA_INIT
}
void CConclusion::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CConclusion)
DDX_Text(pDX, IDC_SCON, m_con);
DDX_Text(pDX, IDC_SHEATBAL, m_heatbal);
DDX_Text(pDX, IDC_SNOWEL, m_nowel);
DDX_Text(pDX, IDC_SPOWER, m_power);
DDX_Text(pDX, IDC_SREGE, m_rege);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CConclusion, CDialog)
//{{AFX_MSG_MAP(CConclusion)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CConclusion message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -