?? sjaregdoc.cpp
字號:
// SJARegDoc.cpp : implementation file
//
#include "stdafx.h"
#include "VCStyle.h"
#include "SJARegDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSJARegDoc
IMPLEMENT_DYNCREATE(CSJARegDoc, CDocument)
CSJARegDoc::CSJARegDoc()
{
}
BOOL CSJARegDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
return TRUE;
}
CSJARegDoc::~CSJARegDoc()
{
}
BEGIN_MESSAGE_MAP(CSJARegDoc, CDocument)
//{{AFX_MSG_MAP(CSJARegDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSJARegDoc diagnostics
#ifdef _DEBUG
void CSJARegDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CSJARegDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CSJARegDoc serialization
void CSJARegDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CSJARegDoc commands
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -