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

PropertySheet

开发平台:

Visual C++

  1. // PropPages.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "resource.h"
  5. #include "PropPages.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char BASED_CODE THIS_FILE[] = __FILE__;
  9. #endif
  10. IMPLEMENT_DYNCREATE(CPropPage1, CViewPropertyPage)
  11. IMPLEMENT_DYNCREATE(CPropPage2, CViewPropertyPage)
  12. IMPLEMENT_DYNCREATE(CPropPage3, CViewPropertyPage)
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CPropPage1 property page
  15. CPropPage1::CPropPage1() : CViewPropertyPage(CPropPage1::IDD)
  16. {
  17. //{{AFX_DATA_INIT(CPropPage1)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. CPropPage1::~CPropPage1()
  22. {
  23. }
  24. void CPropPage1::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CViewPropertyPage::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CPropPage1)
  28. // NOTE: the ClassWizard will add DDX and DDV calls here
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CPropPage1, CViewPropertyPage)
  32. //{{AFX_MSG_MAP(CPropPage1)
  33. // NOTE: the ClassWizard will add message map macros here
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CPropPage2 property page
  38. CPropPage2::CPropPage2() : CViewPropertyPage(CPropPage2::IDD)
  39. {
  40. //{{AFX_DATA_INIT(CPropPage2)
  41. // NOTE: the ClassWizard will add member initialization here
  42. //}}AFX_DATA_INIT
  43. }
  44. CPropPage2::~CPropPage2()
  45. {
  46. }
  47. void CPropPage2::DoDataExchange(CDataExchange* pDX)
  48. {
  49. CViewPropertyPage::DoDataExchange(pDX);
  50. //{{AFX_DATA_MAP(CPropPage2)
  51. // NOTE: the ClassWizard will add DDX and DDV calls here
  52. //}}AFX_DATA_MAP
  53. }
  54. BEGIN_MESSAGE_MAP(CPropPage2, CViewPropertyPage)
  55. //{{AFX_MSG_MAP(CPropPage2)
  56. // NOTE: the ClassWizard will add message map macros here
  57. //}}AFX_MSG_MAP
  58. END_MESSAGE_MAP()
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CPropPage3 property page
  61. CPropPage3::CPropPage3() : CViewPropertyPage(CPropPage3::IDD)
  62. {
  63. //{{AFX_DATA_INIT(CPropPage3)
  64. // NOTE: the ClassWizard will add member initialization here
  65. //}}AFX_DATA_INIT
  66. }
  67. CPropPage3::~CPropPage3()
  68. {
  69. }
  70. void CPropPage3::DoDataExchange(CDataExchange* pDX)
  71. {
  72. CViewPropertyPage::DoDataExchange(pDX);
  73. //{{AFX_DATA_MAP(CPropPage3)
  74. // NOTE: the ClassWizard will add DDX and DDV calls here
  75. //}}AFX_DATA_MAP
  76. }
  77. BEGIN_MESSAGE_MAP(CPropPage3, CViewPropertyPage)
  78. //{{AFX_MSG_MAP(CPropPage3)
  79. // NOTE: the ClassWizard will add message map macros here
  80. //}}AFX_MSG_MAP
  81. END_MESSAGE_MAP()