Prop2.cpp
上传用户:peony_8
上传日期:2022-05-18
资源大小:1955k
文件大小:2k
源码类别:

菜单

开发平台:

Visual C++

  1. // Prop2.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Prop.h"
  5. #include "Prop2.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CProp2 property page
  13. IMPLEMENT_DYNCREATE(CProp2, CPropertyPage)
  14. CProp2::CProp2() : CPropertyPage(CProp2::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CProp2)
  17. m_football = FALSE;
  18. m_basketball = FALSE;
  19. m_volleyball = FALSE;
  20. m_swim = FALSE;
  21. //}}AFX_DATA_INIT
  22. }
  23. CProp2::~CProp2()
  24. {
  25. }
  26. void CProp2::DoDataExchange(CDataExchange* pDX)
  27. {
  28. CPropertyPage::DoDataExchange(pDX);
  29. //{{AFX_DATA_MAP(CProp2)
  30. DDX_Check(pDX, IDC_CHECK1, m_football);
  31. DDX_Check(pDX, IDC_CHECK2, m_basketball);
  32. DDX_Check(pDX, IDC_CHECK3, m_volleyball);
  33. DDX_Check(pDX, IDC_CHECK4, m_swim);
  34. //}}AFX_DATA_MAP
  35. }
  36. BEGIN_MESSAGE_MAP(CProp2, CPropertyPage)
  37. //{{AFX_MSG_MAP(CProp2)
  38. // NOTE: the ClassWizard will add message map macros here
  39. //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CProp2 message handlers
  43. BOOL CProp2::OnSetActive() 
  44. {
  45. // TODO: Add your specialized code here and/or call the base class
  46. ((CPropertySheet*)GetParent())->SetWizardButtons(PSWIZB_BACK | PSWIZB_NEXT);
  47. return CPropertyPage::OnSetActive();
  48. }
  49. LRESULT CProp2::OnWizardNext() 
  50. {
  51. // TODO: Add your specialized code here and/or call the base class
  52. UpdateData();//控件和成员变量关联之后,如果需要取值或将所关联的成员变量的值传给控件,一定要调用UpdateData来更新数据
  53. if(m_football || m_basketball || m_volleyball || m_swim)
  54. {
  55. return CPropertyPage::OnWizardNext();//进入到下一个页面
  56. }
  57. else
  58. {
  59. MessageBox("请选择你的兴趣爱好!");
  60. return -1;
  61. }
  62. }