?? summpage.cpp
字號(hào):
// 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
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -