MyPropertySheet.h 984 B

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