📄 010763doc.cpp
字号:
// 010763Doc.cpp : implementation of the CMy010763Doc class
//
#include "stdafx.h"
#include "010763.h"
#include "010763Doc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMy010763Doc
IMPLEMENT_DYNCREATE(CMy010763Doc, CDocument)
BEGIN_MESSAGE_MAP(CMy010763Doc, CDocument)
//{{AFX_MSG_MAP(CMy010763Doc)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMy010763Doc construction/destruction
CMy010763Doc::CMy010763Doc()
{
// TODO: add one-time construction code here
}
CMy010763Doc::~CMy010763Doc()
{
}
BOOL CMy010763Doc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMy010763Doc serialization
void CMy010763Doc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CMy010763Doc diagnostics
#ifdef _DEBUG
void CMy010763Doc::AssertValid() const
{
CDocument::AssertValid();
}
void CMy010763Doc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMy010763Doc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -