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

📄 messagemanager_sheet.cpp

📁 wince下交警执法程序源码,使用evc编写
💻 CPP
字号:
// MessageManager_Sheet.cpp : implementation file
//

#include "stdafx.h"
#include "TrafficExecLaw.h"
#include "MessageManager_Sheet.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMessageManager_Sheet

IMPLEMENT_DYNAMIC(CMessageManager_Sheet, CPropertySheet)

CMessageManager_Sheet::CMessageManager_Sheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
}

#include "Sendbox_Dlg.h"
#include "inbox_Dlg.h"
#include "CmdCenterMess_PPage.h"

CMessageManager_Sheet::CMessageManager_Sheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
	CSendbox_Dlg *pSbd=new CSendbox_Dlg;
    CInbox_Dlg  *pibd=new CInbox_Dlg;
	CCmdCenterMess_PPage *pCmdMess_PP=new CCmdCenterMess_PPage;
	this->AddPage (pibd);
    this->AddPage (pSbd);
    this->AddPage (pCmdMess_PP);

}

CMessageManager_Sheet::~CMessageManager_Sheet()
{
}


BEGIN_MESSAGE_MAP(CMessageManager_Sheet, CPropertySheet)
	//{{AFX_MSG_MAP(CMessageManager_Sheet)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMessageManager_Sheet message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -