WizPropertySheet.h
上传用户:lnjd2004
上传日期:2007-01-02
资源大小:3k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. // WizPropertySheet.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CWizPropertySheet
  5. #ifndef __WIZ_PROP_SHEET__
  6. #define __WIZ_PROP_SHEET__
  7. #include "WizPropertyPage.h"
  8. class CWizPropertySheet : public CPropertySheet
  9. {
  10. DECLARE_DYNAMIC(CWizPropertySheet)
  11. // Construction
  12. public:
  13. void EnablePages(BOOL bEnable, int nStart, int nEnd = -1);
  14. CWizPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  15. CWizPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  16. void AddPage( CWizPropertyPage *pPage );
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CWizPropertySheet)
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CWizPropertySheet();
  28. // Generated message map functions
  29. protected:
  30. //{{AFX_MSG(CWizPropertySheet)
  31. // NOTE - the ClassWizard will add and remove member functions here.
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. //friend class CPropertyPage;
  35. };
  36. /////////////////////////////////////////////////////////////////////////////
  37. #endif