📄 feeratesheet.cpp
字号:
// FeeRateSheet.cpp : implementation file
//
#include "stdafx.h"
#include "IPCount.h"
#include "FeeRateSheet.h"
#include "IPCountDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFeeRateSheet
IMPLEMENT_DYNAMIC(CFeeRateSheet, CPropertySheet)
CFeeRateSheet::CFeeRateSheet()
:CPropertySheet("费率管理",NULL,0)
{
}
CFeeRateSheet::~CFeeRateSheet()
{
}
BEGIN_MESSAGE_MAP(CFeeRateSheet, CPropertySheet)
//{{AFX_MSG_MAP(CFeeRateSheet)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFeeRateSheet message handlers
BOOL CFeeRateSheet::DestroyWindow()
{
// TODO: Add your specialized code here and/or call the base class
CIPCountDlg *Ipdlg;
Ipdlg=(CIPCountDlg *)GetParent();
Ipdlg->bRate=FALSE;
return CPropertySheet::DestroyWindow();
}
void CFeeRateSheet::PostNcDestroy()
{
// TODO: Add your specialized code here and/or call the base class
for(int i=0;i<GetPageCount();i++)
{
CPropertyPage* pPage=GetPage(i);
delete pPage;
}
CPropertySheet::PostNcDestroy();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -