propsheet.cpp

来自「使用C开发的嵌入式平台软件源程序.有串行通讯、数据库入库等功能。」· C++ 代码 · 共 28 行

CPP
28
字号

// 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 + =
减小字号Ctrl + -
显示快捷键?