demopsheet.h

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

H
52
字号
#pragma once

// DemoPSheet.h : header file
//

#include "CoordsPPage.h"
#include "ShapePPage.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;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDemoPSheet)
	public:
	virtual BOOL OnInitDialog();
	//}}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 + -
显示快捷键?