myctrlsheet.h
来自「利用CJ60库创建界面」· C头文件 代码 · 共 56 行
H
56 行
#if !defined(AFX_MYCTRLSHEET_H__FD12BBAE_C6B0_422C_9161_195C460C5F9F__INCLUDED_)
#define AFX_MYCTRLSHEET_H__FD12BBAE_C6B0_422C_9161_195C460C5F9F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MyCtrlSheet.h : header file
//
#include "StatusPage.h"
#include "LocationPage.h"
#include "TypePage.h"
/////////////////////////////////////////////////////////////////////////////
// CMyCtrlSheet
class CMyCtrlSheet : public CPropertySheet
{
DECLARE_DYNAMIC(CMyCtrlSheet)
// Construction
public:
CMyCtrlSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
CMyCtrlSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
// Attributes
public:
CStatusPage m_StatusPage;
CLocationPage m_LocationPage;
CTypePage m_TypePage;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMyCtrlSheet)
//}}AFX_VIRTUAL
// Implementation
public:
void AddPages(void);
virtual ~CMyCtrlSheet();
// Generated message map functions
protected:
//{{AFX_MSG(CMyCtrlSheet)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MYCTRLSHEET_H__FD12BBAE_C6B0_422C_9161_195C460C5F9F__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?