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

书籍源码

开发平台:

Visual C++

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