📄 zhxdoc1.cpp
字号:
// ZhxDoc1.cpp : implementation file
//
#include "stdafx.h"
#include "ZhxDoc1.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CZhxDoc1
IMPLEMENT_DYNCREATE(CZhxDoc1, CDocument)
CZhxDoc1::CZhxDoc1()
{
}
BOOL CZhxDoc1::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
return TRUE;
}
CZhxDoc1::~CZhxDoc1()
{
}
BEGIN_MESSAGE_MAP(CZhxDoc1, CDocument)
//{{AFX_MSG_MAP(CZhxDoc1)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CZhxDoc1 diagnostics
#ifdef _DEBUG
void CZhxDoc1::AssertValid() const
{
CDocument::AssertValid();
}
void CZhxDoc1::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CZhxDoc1 serialization
void CZhxDoc1::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CZhxDoc1 commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -