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

📄 exampl~2.cpp

📁 vc++net很不错的一个工具
💻 CPP
字号:
// Example012Doc.cpp :  CExample012Doc 类的实现
//

#include "stdafx.h"
#include "Example012.h"

#include "Example012Doc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CExample012Doc

IMPLEMENT_DYNCREATE(CExample012Doc, CDocument)

BEGIN_MESSAGE_MAP(CExample012Doc, CDocument)
END_MESSAGE_MAP()


// CExample012Doc 构造/销毁

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

}

CExample012Doc::~CExample012Doc()
{
}

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

	// TODO:在此添加重新初始化代码
	// (SDI 文档将重用该文档)

	return TRUE;
}




// CExample012Doc 序列化

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


// CExample012Doc 诊断

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

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


// CExample012Doc 命令

⌨️ 快捷键说明

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