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