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