📄 dlgoutcome.cpp
字号:
// DlgOutcome.cpp : implementation file
//
#include "stdafx.h"
#include "stmanager.h"
#include "DlgOutcome.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgOutcome dialog
CDlgOutcome::CDlgOutcome(CWnd* pParent /*=NULL*/)
: CDialog(CDlgOutcome::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgOutcome)
m_allscore = 0.0;
m_averscore = 0.0;
m_cpp = 0.0;
m_english = 0.0;
m_major = _T("");
m_math = 0.0;
m_name = _T("");
m_number = _T("");
m_sex = _T("");
//}}AFX_DATA_INIT
}
void CDlgOutcome::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgOutcome)
DDX_Text(pDX, IDC_EDIT_Allscore, m_allscore);
DDX_Text(pDX, IDC_EDIT_Averscore, m_averscore);
DDX_Text(pDX, IDC_EDIT_Cpp, m_cpp);
DDX_Text(pDX, IDC_EDIT_English, m_english);
DDX_Text(pDX, IDC_EDIT_Major, m_major);
DDX_Text(pDX, IDC_EDIT_Math, m_math);
DDX_Text(pDX, IDC_EDIT_Name, m_name);
DDX_Text(pDX, IDC_EDIT_Number, m_number);
DDX_Text(pDX, IDC_EDIT_Sex, m_sex);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgOutcome, CDialog)
//{{AFX_MSG_MAP(CDlgOutcome)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgOutcome message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -