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

PropertySheet

开发平台:

Visual C++

  1. // $$PAGE_FILE$$.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "$$Root$$.h"
  5. #include "$$PAGE_FILE$$.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // $$PAGE_CLASS$$ property page
  13. IMPLEMENT_DYNCREATE($$PAGE_CLASS$$, CPropertyPage)
  14. $$PAGE_CLASS$$::$$PAGE_CLASS$$() : CPropertyPage($$PAGE_CLASS$$::IDD)
  15. {
  16. //{{AFX_DATA_INIT($$PAGE_CLASS$$)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. $$PAGE_CLASS$$::~$$PAGE_CLASS$$()
  21. {
  22. }
  23. void $$PAGE_CLASS$$::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP($$PAGE_CLASS$$)
  27. // NOTE: the ClassWizard will add DDX and DDV calls here
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP($$PAGE_CLASS$$, CPropertyPage)
  31. //{{AFX_MSG_MAP($$PAGE_CLASS$$)
  32. // NOTE: the ClassWizard will add message map macros here
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // $$PAGE_CLASS$$ message handlers
  37. $$IF(TOOLTIPS)
  38. BOOL $$PAGE_CLASS$$::PreTranslateMessage (MSG* pMsg)
  39. {
  40. // Let the ToolTip process this message.
  41. m_tooltip.RelayEvent(pMsg);
  42. return CPropertyPage::PreTranslateMessage(pMsg);
  43. }
  44. BOOL $$PAGE_CLASS$$::OnInitDialog()
  45. {
  46. CPropertyPage::OnInitDialog();
  47. // Create the ToolTip control.
  48. m_tooltip.Create (this);
  49. m_tooltip.Activate (TRUE);
  50. // TODO: Use one of the following forms to add controls:
  51. // m_tooltip.AddTool (GetDlgItem (IDC_<name>), <string-table-id>);
  52. // m_tooltip.AddTool (GetDlgItem (IDC_<name>), _T ("<text>"));
  53. return TRUE;
  54. }
  55. $$ENDIF //TOOLTIPS