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

📄 wndstyledoc.cpp

📁 Visual_C++.NET精彩案例237.rar
💻 CPP
字号:
// WndStyleDoc.cpp :  CWndStyleDoc 类的实现
//


#include "stdafx.h"
#include "WndStyle.h"

#include "WndStyleDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

// CWndStyleDoc

IMPLEMENT_DYNCREATE(CWndStyleDoc, CDocument)

BEGIN_MESSAGE_MAP(CWndStyleDoc, CDocument)
	//{{AFX_MSG_MAP(CWndStyleDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

// CWndStyleDoc 构造/销毁
CWndStyleDoc::CWndStyleDoc()
{
	// TODO:在此添加一次性构造代码

}

CWndStyleDoc::~CWndStyleDoc()
{
}

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

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


	return TRUE;
}



// CWndStyleDoc 序列化

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

// CWndStyleDoc 诊断
#ifdef _DEBUG
void CWndStyleDoc::AssertValid() const
{
	CDocument::AssertValid();
}

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

// CWndStyleDoc 命令

⌨️ 快捷键说明

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