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

📄 ex14adoc.cpp

📁 vc.net内幕系列源码
💻 CPP
字号:
// Ex14aDoc.cpp : implementation of the CEx14aDoc class
//

#include "stdafx.h"
#include "Ex14a.h"

#include "Ex14aDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CEx14aDoc

IMPLEMENT_DYNCREATE(CEx14aDoc, CDocument)

BEGIN_MESSAGE_MAP(CEx14aDoc, CDocument)
END_MESSAGE_MAP()


// CEx14aDoc construction/destruction

CEx14aDoc::CEx14aDoc()
{
	// TODO: add one-time construction code here

}

CEx14aDoc::~CEx14aDoc()
{
}

BOOL CEx14aDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}




// CEx14aDoc serialization

void CEx14aDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}


// CEx14aDoc diagnostics

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

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


// CEx14aDoc commands

⌨️ 快捷键说明

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