📄 stuprosht.cpp
字号:
// StuProSht.cpp : implementation file
//
#include "stdafx.h"
#include "SCMIS.h"
#include "StuProSht.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CStuProSht
IMPLEMENT_DYNAMIC(CStuProSht, CPropertySheet)
CStuProSht::CStuProSht(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
//m_page1.m_stuid.Format("%s",this->m_id);
this->AddPage(&m_page2);
this->AddPage(&m_page1);
}
CStuProSht::CStuProSht(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
:CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
//m_page1.m_stuid=this->m_id;
// m_page1.m_stuid.Format("%s",this->m_id);
this->AddPage(&m_page2);
this->AddPage(&m_page1);
}
CStuProSht::~CStuProSht()
{
}
BEGIN_MESSAGE_MAP(CStuProSht, CPropertySheet)
//{{AFX_MSG_MAP(CStuProSht)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CStuProSht message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -