xueshengchengji.cpp

来自「用Visual c++写」· C++ 代码 · 共 56 行

CPP
56
字号
// xueshengchengji.cpp : implementation file
//

#include "stdafx.h"
#include "mining.h"
#include "xueshengchengji.h"

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

/////////////////////////////////////////////////////////////////////////////
// Cxueshengchengji dialog


Cxueshengchengji::Cxueshengchengji(CWnd* pParent /*=NULL*/)
	: CDialog(Cxueshengchengji::IDD, pParent)
{
	//{{AFX_DATA_INIT(Cxueshengchengji)
	m_keneijishi = 0;
	m_kewaijishi = 0;
	m_qimochengji = 0;
	m_xuehao = _T("");
	//}}AFX_DATA_INIT
}


void Cxueshengchengji::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(Cxueshengchengji)
	DDX_Text(pDX, IDC_EDIT1, m_keneijishi);
	DDX_Text(pDX, IDC_EDIT2, m_kewaijishi);
	DDX_Text(pDX, IDC_EDIT3, m_qimochengji);
	DDX_Text(pDX, IDC_EDIT4, m_xuehao);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(Cxueshengchengji, CDialog)
	//{{AFX_MSG_MAP(Cxueshengchengji)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Cxueshengchengji message handlers

void Cxueshengchengji::OnOK() 
{
	// TODO: Add extra validation here
	UpdateData(true);
	CDialog::OnOK();
}

⌨️ 快捷键说明

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