optionsheet.h

来自「磁盘容量扫描、但界面和程序结构非常不错」· C头文件 代码 · 共 54 行

H
54
字号
// OptionSheet.h : header file
//
// This class defines custom modal property sheet 
// COptionSheet.
 
#ifndef __OPTIONSHEET_H__
#define __OPTIONSHEET_H__

#include "CDIPage.h"

/////////////////////////////////////////////////////////////////////////////
// COptionSheet

class COptionSheet : public CPropertySheet
{
	DECLARE_DYNAMIC(COptionSheet)

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

// Attributes
public:
	CDIPage1 m_Page1;
	CDIPage2 m_Page2;
	CDIPage3 m_Page3;
	CDIPage4 m_Page4;

// Operations
public:

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

// Implementation
public:
	virtual ~COptionSheet();

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

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

#endif	// __OPTIONSHEET_H__

⌨️ 快捷键说明

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