demopsheet.h

来自「< MFC经典问答>>是微软类库经常遇到的问题」· C头文件 代码 · 共 64 行

H
64
字号
#pragma once

// DemoPSheet.h : header file
//

#include "CoordsPPage.h"
#include "ShapePPage.h"

#include "PPage3.h"
#include "PPage4.h"
#include "PPage5.h"
#include "PPage6.h"
#include "PPage7.h"
#include "PPage8.h"

/////////////////////////////////////////////////////////////////////////////
// CDemoPSheet

class CDemoPSheet : public CPropertySheet
{
	DECLARE_DYNAMIC(CDemoPSheet)

// Construction
public:
	CDemoPSheet(CWnd* pParentWnd = NULL, UINT iSelectPage = 0);

// Attributes
public:
	CCoordsPPage m_CoordsPPage;
	CShapePPage m_ShapePPage;

	CPPage3 m_PPage3;
	CPPage4 m_PPage4;
	CPPage5 m_PPage5;
	CPPage6 m_PPage6;
	CPPage7 m_PPage7;
	CPPage8 m_PPage8;

// Operations
public:

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

// Implementation
public:
	virtual ~CDemoPSheet();

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

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

⌨️ 快捷键说明

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