?? controlsprop.cpp
字號(hào):
// ControlsProp.cpp : implementation file
//
#include "stdafx.h"
#include "Controls.h"
#include "ControlsProp.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CControlsProp
IMPLEMENT_DYNAMIC(CControlsProp, CPropertySheet)
CControlsProp::CControlsProp(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
}
CControlsProp::CControlsProp(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
}
CControlsProp::~CControlsProp()
{
}
BEGIN_MESSAGE_MAP(CControlsProp, CPropertySheet)
//{{AFX_MSG_MAP(CControlsProp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CControlsProp message handlers
BOOL CControlsProp::OnInitDialog()
{
BOOL bResult = CPropertySheet::OnInitDialog();
CWnd *button = GetDlgItem (IDOK);
button->ShowWindow (SW_HIDE);
button = GetDlgItem (IDCANCEL);
button->SetWindowText (_T("Close"));
return (bResult);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -