execlawsheet_dlg.cpp

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

CPP
52
字号
// ExecLawSheet_Dlg.cpp : implementation file
//

#include "stdafx.h"
#include "TrafficExecLaw.h"
#include "ExecLawSheet_Dlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CExecLawSheet_Dlg
#include "PunishPeccancy_PPage.h"
#include "SrchCertificate_PPage.h"

IMPLEMENT_DYNAMIC(CExecLawSheet_Dlg, CPropertySheet)

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

CExecLawSheet_Dlg::CExecLawSheet_Dlg(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
	:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{

	CSrchCertificate_PPage *pSrchCer=new CSrchCertificate_PPage;
    CPunishPeccancy_PPage  *pPunishPecc=new CPunishPeccancy_PPage;
	this->AddPage (pSrchCer);
	this->AddPage (pPunishPecc);
	this->SetActivePage (0);

}

CExecLawSheet_Dlg::~CExecLawSheet_Dlg()
{
}


BEGIN_MESSAGE_MAP(CExecLawSheet_Dlg, CPropertySheet)
	//{{AFX_MSG_MAP(CExecLawSheet_Dlg)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CExecLawSheet_Dlg message handlers


⌨️ 快捷键说明

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