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

菜单

开发平台:

Visual C++

  1. // Prop3.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Prop.h"
  5. #include "Prop3.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CProp3 property page
  13. IMPLEMENT_DYNCREATE(CProp3, CPropertyPage)
  14. CProp3::CProp3() : CPropertyPage(CProp3::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CProp3)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. CProp3::~CProp3()
  21. {
  22. }
  23. void CProp3::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CProp3)
  27. // NOTE: the ClassWizard will add DDX and DDV calls here
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CProp3, CPropertyPage)
  31. //{{AFX_MSG_MAP(CProp3)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CProp3 message handlers
  36. BOOL CProp3::OnSetActive() 
  37. {
  38. // TODO: Add your specialized code here and/or call the base class
  39. ((CPropertySheet*)GetParent())->SetWizardButtons(PSWIZB_BACK | PSWIZB_FINISH);
  40. return CPropertyPage::OnSetActive();
  41. }
  42. BOOL CProp3::OnInitDialog() 
  43. {
  44. CPropertyPage::OnInitDialog();
  45. // TODO: Add extra initialization here
  46. ((CComboBox*)GetDlgItem(IDC_COMBO2))->AddString("1000元以下");
  47. ((CComboBox*)GetDlgItem(IDC_COMBO2))->AddString("1000-2000元");
  48. ((CComboBox*)GetDlgItem(IDC_COMBO2))->AddString("2000-3000元");
  49. ((CComboBox*)GetDlgItem(IDC_COMBO2))->AddString("3000元以上");
  50. ((CComboBox*)GetDlgItem(IDC_COMBO2))->SetCurSel(0);
  51. return TRUE;  // return TRUE unless you set the focus to a control
  52.               // EXCEPTION: OCX Property Pages should return FALSE
  53. }
  54. BOOL CProp3::OnWizardFinish() 
  55. {
  56. // TODO: Add your specialized code here and/or call the base class
  57. int index;
  58. index=((CComboBox*)GetDlgItem(IDC_COMBO2))->GetCurSel();
  59. ((CComboBox*)GetDlgItem(IDC_COMBO2))->GetLBText(index,m_strSalary);
  60. return CPropertyPage::OnWizardFinish();
  61. }