wizardsheet.h

来自「把doc文档转成pdf后刻录成CD,用VC++开发,用了Nero的SDK和CXI」· C头文件 代码 · 共 69 行

H
69
字号
#if !defined(AFX_WIZARDSHEET_H__FF5D33D6_82DD_41BC_942C_9D77B1FF3044__INCLUDED_)
#define AFX_WIZARDSHEET_H__FF5D33D6_82DD_41BC_942C_9D77B1FF3044__INCLUDED_

#include "WelcomePage.h"	// Added by ClassView
#include "ProjectNamePage.h"	// Added by ClassView
#include "ScannerPage.h"
#include "BurnCDPage.h"
#include "FinishPage.h"
#include "ExplorerPage.h"


#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// WizardSheet.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CWizardSheet

class CWizardSheet : public CPropertySheetEx
{
	DECLARE_DYNAMIC(CWizardSheet)

// Construction
public:
	CWizardSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage, 
		HBITMAP hbmWatermark, HPALETTE hpalWatermark, HBITMAP hbmHeader);
	CWizardSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage,
		HBITMAP hbmWatermark, HPALETTE hpalWatermark, HBITMAP hbmHeader);

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWizardSheet)
	public:
	virtual BOOL OnInitDialog();
	//}}AFX_VIRTUAL

// Implementation
public:
	CFinishPage		 m_Finish;
	CBurnCDPage		 m_BurnCD;
	CExplorerPage	 m_Explorer;
	CScannerPage	 m_Scanner;
	CProjectNamePage m_ProjectName;
	CWelcomePage	 m_Welcome;
	virtual ~CWizardSheet();

	// Generated message map functions
protected:
	//{{AFX_MSG(CWizardSheet)
		// 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_WIZARDSHEET_H__FF5D33D6_82DD_41BC_942C_9D77B1FF3044__INCLUDED_)

⌨️ 快捷键说明

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