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