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

📄 penbrushdemodoc.cpp

📁 < VC++编程宝典>>配套源代码, 对于想精通VC++的朋友很有帮助!
💻 CPP
字号:
// PenBrushDemoDoc.cpp : implementation of the CPenBrushDemoDoc class
//

#include "stdafx.h"
#include "PenBrushDemo.h"

#include "PenBrushDemoDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CPenBrushDemoDoc

IMPLEMENT_DYNCREATE(CPenBrushDemoDoc, CDocument)

BEGIN_MESSAGE_MAP(CPenBrushDemoDoc, CDocument)
	//{{AFX_MSG_MAP(CPenBrushDemoDoc)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CPenBrushDemoDoc construction/destruction

CPenBrushDemoDoc::CPenBrushDemoDoc()
{
}

CPenBrushDemoDoc::~CPenBrushDemoDoc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CPenBrushDemoDoc serialization

void CPenBrushDemoDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
	}
	else
	{
	}
}

/////////////////////////////////////////////////////////////////////////////
// CPenBrushDemoDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CPenBrushDemoDoc commands

⌨️ 快捷键说明

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