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