scpropertypage.cpp

来自「agsm a gsm sim manager for browsing, man」· C++ 代码 · 共 72 行

CPP
72
字号
// ScPropertyPage.cpp : implementation file
//

#include "stdafx.h"
#include "agsm2.h"
#include "ScPropertyPage.h"

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

/////////////////////////////////////////////////////////////////////////////
// CScPropertyPage property page

IMPLEMENT_DYNCREATE(CScPropertyPage, CPropertyPage)

CScPropertyPage::CScPropertyPage() : CPropertyPage(CScPropertyPage::IDD)
{
	//{{AFX_DATA_INIT(CScPropertyPage)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CScPropertyPage::~CScPropertyPage()
{
}

void CScPropertyPage::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CScPropertyPage)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CScPropertyPage, CPropertyPage)
	//{{AFX_MSG_MAP(CScPropertyPage)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CScPropertyPage message handlers

CScPropertyPage::CScPropertyPage(UINT nIDTemplate):CPropertyPage(nIDTemplate)
{

}

CScPropertyPage::CScPropertyPage(UINT nIDTemplate,UINT nIDCaption ):CPropertyPage(nIDTemplate,nIDCaption)
{

}

CScListCtrl* CScPropertyPage::GetListCtrl()
{
	return NULL;
}

void CScPropertyPage::ReadRecord(int n)
{

}

void CScPropertyPage::WriteRecord(int n)
{

}

⌨️ 快捷键说明

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