drawtwodoc.cpp
来自「一种学习MFC后基于vc编程实现画直线、矩形与圆形等基本图形。简单实现了一种画图」· C++ 代码 · 共 85 行
CPP
85 行
// 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 + =
减小字号Ctrl + -
显示快捷键?