stuprosht.cpp
来自「数据库管理系统」· C++ 代码 · 共 56 行
CPP
56 行
// 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 + =
减小字号Ctrl + -
显示快捷键?