MyPropertySheet.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. #include "ResizableSheetEx.h"
  11. class CMyPropertySheet : public CResizableSheetEx
  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. 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. virtual ~CMyPropertySheet();
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CMyPropertySheet)
  34. virtual BOOL OnInitDialog();
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. #endif // __MYPROPERTYSHEET_H__