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