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

PropertySheet

开发平台:

Visual C++

  1. // $$PAGE_FILE$$.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // $$PAGE_CLASS$$ dialog
  5. class $$PAGE_CLASS$$ : public CPropertyPage
  6. {
  7. DECLARE_DYNCREATE($$PAGE_CLASS$$)
  8. // Construction
  9. public:
  10. $$PAGE_CLASS$$();
  11. ~$$PAGE_CLASS$$();
  12. $$IF(TOOLTIPS)
  13. virtual BOOL PreTranslateMessage (MSG* pMsg);
  14. $$ENDIF //TOOLTIPS
  15. // Dialog Data
  16. //{{AFX_DATA($$PAGE_CLASS$$)
  17. enum { IDD = $$PAGE_ID$$ };
  18. // NOTE - ClassWizard will add data members here.
  19. //    DO NOT EDIT what you see in these blocks of generated code !
  20. //}}AFX_DATA
  21. // Overrides
  22. // ClassWizard generate virtual function overrides
  23. //{{AFX_VIRTUAL($$PAGE_CLASS$$)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. // Generated message map functions
  30. //{{AFX_MSG($$PAGE_CLASS$$)
  31. $$IF(TOOLTIPS)
  32. virtual BOOL OnInitDialog();
  33. $$ELSE
  34. // NOTE: the ClassWizard will add member functions here
  35. $$ENDIF //TOOLTIPS
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. $$IF(TOOLTIPS)
  39. protected:
  40. CToolTipCtrl m_tooltip;
  41. $$ENDIF //TOOLTIPS
  42. };