⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scoregatherdoc.cpp

📁 一个学生考试成绩管理的半成品
💻 CPP
字号:
// ScoreGatherDoc.cpp :  CScoreGatherDoc 类的实现
//

#include "stdafx.h"
#include "ScoreGather.h"

#include "ScoreGatherDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CScoreGatherDoc

IMPLEMENT_DYNCREATE(CScoreGatherDoc, CDocument)

BEGIN_MESSAGE_MAP(CScoreGatherDoc, CDocument)
END_MESSAGE_MAP()


// CScoreGatherDoc 构造/析构

CScoreGatherDoc::CScoreGatherDoc()
{
	// TODO: 在此添加一次性构造代码

}

CScoreGatherDoc::~CScoreGatherDoc()
{
}

BOOL CScoreGatherDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;
	return TRUE;
}




// CScoreGatherDoc 序列化

void CScoreGatherDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: 在此添加存储代码
	}
	else
	{
		// TODO: 在此添加加载代码
	}
}


// CScoreGatherDoc 诊断

#ifdef _DEBUG
void CScoreGatherDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CScoreGatherDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG


// CScoreGatherDoc 命令

⌨️ 快捷键说明

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