📄 s14_03doc.cpp
字号:
// S14_03Doc.cpp : CS14_03Doc 类的实现
//
#include "stdafx.h"
#include "S14_03.h"
#include "S14_03Set.h"
#include "S14_03Doc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CS14_03Doc
IMPLEMENT_DYNCREATE(CS14_03Doc, CDocument)
BEGIN_MESSAGE_MAP(CS14_03Doc, CDocument)
END_MESSAGE_MAP()
// CS14_03Doc 构造/销毁
CS14_03Doc::CS14_03Doc()
{
// TODO:在此添加一次性构造代码
}
CS14_03Doc::~CS14_03Doc()
{
}
BOOL CS14_03Doc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO:在此添加重新初始化代码
// (SDI 文档将重用该文档)
return TRUE;
}
// CS14_03Doc 诊断
#ifdef _DEBUG
void CS14_03Doc::AssertValid() const
{
CDocument::AssertValid();
}
void CS14_03Doc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
// CS14_03Doc 命令
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -