MyPropertyPage1.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // MyPropertyPage1.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "resource.h"
  5. #include "MyPropertyPage1.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char BASED_CODE THIS_FILE[] = __FILE__;
  9. #endif
  10. IMPLEMENT_DYNCREATE(CMyPropertyPage1, CPropertyPage)
  11. IMPLEMENT_DYNCREATE(CMyPropertyPage2, CPropertyPage)
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMyPropertyPage1 property page
  14. CMyPropertyPage1::CMyPropertyPage1() : CPropertyPage(CMyPropertyPage1::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CMyPropertyPage1)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. CMyPropertyPage1::~CMyPropertyPage1()
  21. {
  22. }
  23. void CMyPropertyPage1::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CMyPropertyPage1)
  27. // NOTE: the ClassWizard will add DDX and DDV calls here
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CMyPropertyPage1, CPropertyPage)
  31. //{{AFX_MSG_MAP(CMyPropertyPage1)
  32. // NOTE: the ClassWizard will add message map macros here
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CMyPropertyPage2 property page
  37. CMyPropertyPage2::CMyPropertyPage2() : CPropertyPage(CMyPropertyPage2::IDD)
  38. {
  39. //{{AFX_DATA_INIT(CMyPropertyPage2)
  40. // NOTE: the ClassWizard will add member initialization here
  41. //}}AFX_DATA_INIT
  42. }
  43. CMyPropertyPage2::~CMyPropertyPage2()
  44. {
  45. }
  46. void CMyPropertyPage2::DoDataExchange(CDataExchange* pDX)
  47. {
  48. CPropertyPage::DoDataExchange(pDX);
  49. //{{AFX_DATA_MAP(CMyPropertyPage2)
  50. // NOTE: the ClassWizard will add DDX and DDV calls here
  51. //}}AFX_DATA_MAP
  52. }
  53. BEGIN_MESSAGE_MAP(CMyPropertyPage2, CPropertyPage)
  54. //{{AFX_MSG_MAP(CMyPropertyPage2)
  55. // NOTE: the ClassWizard will add message map macros here
  56. //}}AFX_MSG_MAP
  57. END_MESSAGE_MAP()