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

书籍源码

开发平台:

Visual C++

  1. // ListDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ex81.h"
  5. #include "ListDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CListDlg dialog
  13. CListDlg::CListDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CListDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CListDlg)
  17. m_strColor = _T("");
  18. //}}AFX_DATA_INIT
  19. }
  20. void CListDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CListDlg)
  24. DDX_Control(pDX, IDC_COLOR, m_CtrlColor);
  25. DDX_LBString(pDX, IDC_COLOR, m_strColor);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CListDlg, CDialog)
  29. //{{AFX_MSG_MAP(CListDlg)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CListDlg message handlers
  34. BOOL CListDlg::OnInitDialog() 
  35. {
  36. CDialog::OnInitDialog();
  37. //给列表框添加选择项
  38. m_CtrlColor.AddString("红色");
  39. m_CtrlColor.AddString("绿色");
  40. m_CtrlColor.AddString("蓝色");
  41. UpdateData(FALSE);
  42. return TRUE;  // return TRUE unless you set the focus to a control
  43.               // EXCEPTION: OCX Property Pages should return FALSE
  44. }