?? bacandfordoc.cpp
字號:
// BacAndForDoc.cpp : CBacAndForDoc 類的實現
//
#include "stdafx.h"
#include "BacAndFor.h"
#include "BacAndForDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CBacAndForDoc
IMPLEMENT_DYNCREATE(CBacAndForDoc, CDocument)
BEGIN_MESSAGE_MAP(CBacAndForDoc, CDocument)
END_MESSAGE_MAP()
// CBacAndForDoc 構造/析構
CBacAndForDoc::CBacAndForDoc()
{
// TODO: 在此添加一次性構造代碼
}
CBacAndForDoc::~CBacAndForDoc()
{
}
BOOL CBacAndForDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: 在此添加重新初始化代碼
// (SDI 文檔將重用該文檔)
return TRUE;
}
// CBacAndForDoc 序列化
void CBacAndForDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: 在此添加存儲代碼
}
else
{
// TODO: 在此添加加載代碼
}
}
// CBacAndForDoc 診斷
#ifdef _DEBUG
void CBacAndForDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CBacAndForDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
// CBacAndForDoc 命令
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -