📄 execlawsheet_dlg.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -