📄 dagdoc.cpp
字号:
// dagDoc.cpp : implementation of the CDagDoc class
//
#include "stdafx.h"
#include "dag.h"
#include "dagDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDagDoc
IMPLEMENT_DYNCREATE(CDagDoc, CDocument)
BEGIN_MESSAGE_MAP(CDagDoc, CDocument)
//{{AFX_MSG_MAP(CDagDoc)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDagDoc construction/destruction
CDagDoc::CDagDoc()
{
}
CDagDoc::~CDagDoc()
{
}
BOOL CDagDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CDagDoc serialization
void CDagDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
}
else
{
}
}
/////////////////////////////////////////////////////////////////////////////
// CDagDoc diagnostics
#ifdef _DEBUG
void CDagDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CDagDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CDagDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -