SkinPropertySheet.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // SkinPropertySheet.h : header file
  2. //
  3. // This class defines custom modal property sheet 
  4. // CSkinPropertySheet.
  5.  
  6. #ifndef __SKINPROPERTYSHEET_H__
  7. #define __SKINPROPERTYSHEET_H__
  8. #include "SkinPropertyPageControls.h"
  9. #include "SkinPropertyPageThemes.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSkinPropertySheet
  12. class CSkinPropertySheet : public CPropertySheet
  13. {
  14. DECLARE_DYNAMIC(CSkinPropertySheet)
  15. public:
  16. CSkinPropertySheet(CWnd* pWndParent = NULL);
  17. public:
  18. CSkinPropertyPageControls m_Page1;
  19. CSkinPropertyPageThemes m_Page2;
  20. //{{AFX_VIRTUAL(CSkinPropertySheet)
  21. virtual BOOL OnInitDialog();
  22. //}}AFX_VIRTUAL
  23. public:
  24. virtual ~CSkinPropertySheet();
  25. protected:
  26. //{{AFX_MSG(CSkinPropertySheet)
  27. // NOTE - the ClassWizard will add and remove member functions here.
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. };
  31. /////////////////////////////////////////////////////////////////////////////
  32. #endif // __SKINPROPERTYSHEET_H__