📄 ppageparkuseinfo.cpp
字号:
// PPageParkUseInfo.cpp : implementation file
//
#include "stdafx.h"
#include "parksys.h"
#include "PPageParkUseInfo.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPPageParkUseInfo property page
IMPLEMENT_DYNCREATE(CPPageParkUseInfo, CPropertyPage)
CPPageParkUseInfo::CPPageParkUseInfo() : CPropertyPage(CPPageParkUseInfo::IDD)
{
//{{AFX_DATA_INIT(CPPageParkUseInfo)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
CPPageParkUseInfo::~CPPageParkUseInfo()
{
}
void CPPageParkUseInfo::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPPageParkUseInfo)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CPPageParkUseInfo, CPropertyPage)
//{{AFX_MSG_MAP(CPPageParkUseInfo)
ON_BN_CLICKED(IDC_DELETE, OnDelete)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPPageParkUseInfo message handlers
void CPPageParkUseInfo::OnDelete()
{
// TODO: Add your control notification handler code here
}
BOOL CPPageParkUseInfo::OnInitDialog()
{
CPropertyPage::OnInitDialog();
// TODO: Add extra initialization here
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -