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

📄 summpage.cpp

📁 一个VC++绘图源程序
💻 CPP
字号:
// summpage.cpp : implementation file
//

#include "stdafx.h"
#include "drawcli.h"
#include "summpage.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSummPage property page

IMPLEMENT_DYNCREATE(CSummPage, CPropertyPage)

CSummPage::CSummPage() : CPropertyPage(CSummPage::IDD)
{
		//{{AFX_DATA_INIT(CSummPage)
	m_strAuthor = _T("");
	m_strKeywd = _T("");
	m_strSubj = _T("");
	m_strCmt = _T("");
	m_strTempl = _T("");
	m_strTitle = _T("");
	m_strAppname = _T("");
	//}}AFX_DATA_INIT
}

CSummPage::~CSummPage()
{
}

void CSummPage::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
		//{{AFX_DATA_MAP(CSummPage)
	DDX_Text(pDX, IDC_AUTHOR, m_strAuthor);
	DDX_Text(pDX, IDC_KEYWORDS, m_strKeywd);
	DDX_Text(pDX, IDC_SUBJECT, m_strSubj);
	DDX_Text(pDX, IDC_COMMENTS, m_strCmt);
	DDX_Text(pDX, IDC_TEMPLATE, m_strTempl);
	DDX_Text(pDX, IDC_TITLE, m_strTitle);
	DDX_Text(pDX, IDC_APPNAME, m_strAppname);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CSummPage, CPropertyPage)
		//{{AFX_MSG_MAP(CSummPage)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSummPage message handlers

⌨️ 快捷键说明

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