⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 keyexa~2.cpp

📁 vc++net很不错的一个工具
💻 CPP
字号:
// KeyExampleDoc.cpp :  CKeyExampleDoc 类的实现
//

#include "stdafx.h"
#include "KeyExample.h"

#include "KeyExampleDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CKeyExampleDoc

IMPLEMENT_DYNCREATE(CKeyExampleDoc, CDocument)

BEGIN_MESSAGE_MAP(CKeyExampleDoc, CDocument)
END_MESSAGE_MAP()


// CKeyExampleDoc 构造/销毁

CKeyExampleDoc::CKeyExampleDoc()
{
	// TODO:在此添加一次性构造代码
	
	m_nCounter=0;

}

CKeyExampleDoc::~CKeyExampleDoc()
{
}

BOOL CKeyExampleDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO:在此添加重新初始化代码
	// (SDI 文档将重用该文档)

	return TRUE;
}




// CKeyExampleDoc 序列化

void CKeyExampleDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO:在此添加存储代码
	}
	else
	{
		// TODO:在此添加加载代码
	}
}


// CKeyExampleDoc 诊断

#ifdef _DEBUG
void CKeyExampleDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CKeyExampleDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG


// CKeyExampleDoc 命令

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -