📄 propsheet.cpp
字号:
// PropSheet.cpp : implementation file
#include "stdafx.h"
#include "resource.h"
#include "PropSheet.h"
#include "Database.h"
#include <SipAPI.h>
IMPLEMENT_DYNAMIC(CPropSheet, CPropertySheet)
CPropSheet::CPropSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage):CPropertySheet(nIDCaption, pParentWnd, iSelectPage){
}
CPropSheet::CPropSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage):CPropertySheet(pszCaption, pParentWnd, iSelectPage){
}
CPropSheet::~CPropSheet(){
}
BEGIN_MESSAGE_MAP(CPropSheet, CPropertySheet)
ON_WM_ACTIVATE()
END_MESSAGE_MAP()
void CPropSheet::OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized) {
CPropertySheet::OnActivate(nState, pWndOther, bMinimized);
ShowWindow(SW_SHOW);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -