MyWizardSheet.h
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // MyWizardSheet.h : header file
  2. //
  3. // This class defines custom modal property sheet 
  4. // CMyWizardSheet.
  5.  
  6. #ifndef __MYWIZARDSHEET_H__
  7. #define __MYWIZARDSHEET_H__
  8. #include "MyWizardPage1.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CMyWizardSheet
  11. class CMyWizardSheet : public CPropertySheet
  12. {
  13. DECLARE_DYNAMIC(CMyWizardSheet)
  14. // Construction
  15. public:
  16. CMyWizardSheet(CWnd* pWndParent = NULL);
  17. // Attributes
  18. public:
  19. CMyWizardPage1 m_Page1;
  20. CMyWizardPage2 m_Page2;
  21. CMyWizardPage3 m_Page3;
  22. CMyWizardPage4 m_Page4;
  23. CMyWizardPage5 m_Page5;
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMyWizardSheet)
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CMyWizardSheet();
  33. // Generated message map functions
  34. protected:
  35. //{{AFX_MSG(CMyWizardSheet)
  36. // NOTE - the ClassWizard will add and remove member functions here.
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. /////////////////////////////////////////////////////////////////////////////
  41. #endif // __MYWIZARDSHEET_H__