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

📄 drawtwodoc.cpp

📁 一种学习MFC后基于vc编程实现画直线、矩形与圆形等基本图形。简单实现了一种画图功能。
💻 CPP
字号:
// DrawTwoDoc.cpp : implementation of the CDrawTwoDoc class
//

#include "stdafx.h"
#include "DrawTwo.h"

#include "DrawTwoDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDrawTwoDoc

IMPLEMENT_DYNCREATE(CDrawTwoDoc, CDocument)

BEGIN_MESSAGE_MAP(CDrawTwoDoc, CDocument)
	//{{AFX_MSG_MAP(CDrawTwoDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDrawTwoDoc construction/destruction

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

}

CDrawTwoDoc::~CDrawTwoDoc()
{
}

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

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CDrawTwoDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CDrawTwoDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CDrawTwoDoc commands

⌨️ 快捷键说明

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