delstudent.cpp

来自「考试管理系统」· C++ 代码 · 共 43 行

CPP
43
字号
// DelStudent.cpp : implementation file
//

#include "stdafx.h"
#include "Exam.h"
#include "DelStudent.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDelStudent dialog


CDelStudent::CDelStudent(CWnd* pParent /*=NULL*/)
	: CDialog(CDelStudent::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDelStudent)
	m_sStudentID = _T("");
	//}}AFX_DATA_INIT
}


void CDelStudent::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDelStudent)
	DDX_Text(pDX, IDC_STUDENTID, m_sStudentID);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDelStudent message handlers

⌨️ 快捷键说明

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