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

PropertySheet

开发平台:

Visual C++

  1. #ifndef __WIZ_PROP_PAGE__
  2. #define __WIZ_PROP_PAGE__
  3. class CWizPropertySheet;
  4. class CWizPropertyPage : public CPropertyPage
  5. {
  6. DECLARE_DYNAMIC(CWizPropertyPage)
  7. public:
  8. BOOL Enable(BOOL bEnable=TRUE);
  9. BOOL IsEnabled(void);
  10. CWizPropertyPage();
  11. CWizPropertyPage(UINT nIDTemplate, UINT nIDCaption = 0);
  12. CWizPropertyPage(LPCTSTR lpszTemplateName, UINT nIDCaption = 0 );
  13. // ClassWizard generate virtual function overrides
  14. //{{AFX_VIRTUAL(CPage1)
  15. virtual BOOL OnSetActive();
  16. virtual LRESULT OnWizardNext();
  17. virtual LRESULT OnWizardBack();
  18. virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  19. //}}AFX_VIRTUAL
  20. protected:
  21. virtual LRESULT GetNextPage(BOOL forward = TRUE);
  22. BOOL m_bEnabled;
  23. CWizPropertySheet *m_pPropSheet;
  24. friend class CWizPropertySheet;
  25. };
  26. #endif