⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 propsheet.cpp

📁 使用C开发的嵌入式平台软件源程序.有串行通讯、数据库入库等功能。
💻 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 + -