feeratesheet.cpp
来自「IP电话计费管理系统本地版」· C++ 代码 · 共 59 行
CPP
59 行
// 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 + =
减小字号Ctrl + -
显示快捷键?