helpsheet.h

来自「一个基于VC+ACCESS的通讯录系统设计」· C头文件 代码 · 共 51 行

H
51
字号
// HelpSheet.h : header file
//
// This class defines custom modal property sheet 
// HelpSheet.
 
#ifndef __HELPSHEET_H__
#define __HELPSHEET_H__

#include "MyPropertyPage1.h"

/////////////////////////////////////////////////////////////////////////////
// HelpSheet

class HelpSheet : public CPropertySheet
{
	DECLARE_DYNAMIC(HelpSheet)

// Construction
public:
	HelpSheet(CWnd* pWndParent = NULL);

// Attributes
public:
	CMyPropertyPage1 m_Page1;
	CMyPropertyPage2 m_Page2;
	CMyPropertyPage3 m_Page3;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(HelpSheet)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~HelpSheet();

// Generated message map functions
protected:
	//{{AFX_MSG(HelpSheet)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

#endif	// __HELPSHEET_H__

⌨️ 快捷键说明

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