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

📄 dv_doc.cpp

📁 是一本很经典的书
💻 CPP
字号:
///////////////////////////////////////////////////////////////////
// Module  : DV_DOC.CPP
//
// Purpose : Implementation of the CDocView1Doc class.
//
// Author  : Rob McGregor - rob_mcgregor@compuserve.com
//
// Date    : 05-12-96
///////////////////////////////////////////////////////////////////

#include "stdafx.h"     // Standard include   
#include "DocView1.h"   // View           
#include "DV_Doc.h"     // Document           
                                   
IMPLEMENT_DYNCREATE(CDocView1Doc, CDocument)

///////////////////////////////////////////////////////////////////
// CDocView1Doc construction/destruction

CDocView1Doc::CDocView1Doc()
{
}

CDocView1Doc::~CDocView1Doc()
{
}

///////////////////////////////////////////////////////////////////
// CDocView1Doc::OnNewDocument()

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

	// SDI documents will reuse this document, initialize here...

	return TRUE;
}

///////////////////////////////////////////////////////////////////


⌨️ 快捷键说明

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