messagemanager_sheet.cpp

来自「wince下交警执法程序源码,使用evc编写」· C++ 代码 · 共 53 行

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