?? optionsheet.cpp
字號(hào):
// OptionSheet.cpp : 實(shí)現(xiàn)文件
//
#include "stdafx.h"
#include "huffman.h"
#include "SpacePage.h"
#include "OptionSheet.h"
// COptionSheet
IMPLEMENT_DYNAMIC(COptionSheet, CPropertySheet)
COptionSheet::COptionSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
this->AddPage(&m_spacePage);
this->AddPage(&m_nodePage);
}
COptionSheet::COptionSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
this->AddPage(&m_spacePage);
this->AddPage(&m_nodePage);
}
COptionSheet::~COptionSheet()
{
}
BEGIN_MESSAGE_MAP(COptionSheet, CPropertySheet)
END_MESSAGE_MAP()
// COptionSheet 消息處理程序
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -