CList_1Dlg.cpp
上传用户:mutou888
上传日期:2022-05-08
资源大小:228k
文件大小:5k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // CList_1Dlg.cpp : implementation file
  2. // Download by http://www.codefans.net
  3. #include "stdafx.h"
  4. #include "CList_1.h"
  5. #include "CList_1Dlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CCList_1Dlg dialog
  50. CCList_1Dlg::CCList_1Dlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CCList_1Dlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CCList_1Dlg)
  54. m_name = _T("");
  55. m_id = 0;
  56. //}}AFX_DATA_INIT
  57. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  58. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  59. }
  60. void CCList_1Dlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CCList_1Dlg)
  64. DDX_Control(pDX, IDC_LIST1, m_ListBox);
  65. DDX_Text(pDX, IDC_EDIT1, m_name);
  66. DDX_Text(pDX, IDC_EDIT4, m_id);
  67. //}}AFX_DATA_MAP
  68. }
  69. BEGIN_MESSAGE_MAP(CCList_1Dlg, CDialog)
  70. //{{AFX_MSG_MAP(CCList_1Dlg)
  71. ON_WM_SYSCOMMAND()
  72. ON_WM_PAINT()
  73. ON_WM_QUERYDRAGICON()
  74. ON_BN_CLICKED(IDOK, OnButtonAdd)
  75. ON_LBN_SELCHANGE(IDC_LIST1, OnSelchangeList1)
  76. ON_BN_CLICKED(IDC_DEL_BUTTON1, OnDelButton1)
  77. //}}AFX_MSG_MAP
  78. END_MESSAGE_MAP()
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CCList_1Dlg message handlers
  81. BOOL CCList_1Dlg::OnInitDialog()
  82. {
  83. CDialog::OnInitDialog();
  84. // Add "About..." menu item to system menu.
  85. // IDM_ABOUTBOX must be in the system command range.
  86. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  87. ASSERT(IDM_ABOUTBOX < 0xF000);
  88. CMenu* pSysMenu = GetSystemMenu(FALSE);
  89. if (pSysMenu != NULL)
  90. {
  91. CString strAboutMenu;
  92. strAboutMenu.LoadString(IDS_ABOUTBOX);
  93. if (!strAboutMenu.IsEmpty())
  94. {
  95. pSysMenu->AppendMenu(MF_SEPARATOR);
  96. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  97. }
  98. }
  99. // Set the icon for this dialog.  The framework does this automatically
  100. //  when the application's main window is not a dialog
  101. SetIcon(m_hIcon, TRUE); // Set big icon
  102. SetIcon(m_hIcon, FALSE); // Set small icon
  103. // TODO: Add extra initialization here
  104. m_id=0000;
  105. UpdateData(FALSE);
  106. GetDlgItem(IDC_DEL_BUTTON1)->EnableWindow(FALSE);
  107. return TRUE;  // return TRUE  unless you set the focus to a control
  108. }
  109. void CCList_1Dlg::OnSysCommand(UINT nID, LPARAM lParam)
  110. {
  111. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  112. {
  113. CAboutDlg dlgAbout;
  114. dlgAbout.DoModal();
  115. }
  116. else
  117. {
  118. CDialog::OnSysCommand(nID, lParam);
  119. }
  120. }
  121. // If you add a minimize button to your dialog, you will need the code below
  122. //  to draw the icon.  For MFC applications using the document/view model,
  123. //  this is automatically done for you by the framework.
  124. void CCList_1Dlg::OnPaint() 
  125. {
  126. if (IsIconic())
  127. {
  128. CPaintDC dc(this); // device context for painting
  129. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  130. // Center icon in client rectangle
  131. int cxIcon = GetSystemMetrics(SM_CXICON);
  132. int cyIcon = GetSystemMetrics(SM_CYICON);
  133. CRect rect;
  134. GetClientRect(&rect);
  135. int x = (rect.Width() - cxIcon + 1) / 2;
  136. int y = (rect.Height() - cyIcon + 1) / 2;
  137. // Draw the icon
  138. dc.DrawIcon(x, y, m_hIcon);
  139. }
  140. else
  141. {
  142. CDialog::OnPaint();
  143. }
  144. }
  145. // The system calls this to obtain the cursor to display while the user drags
  146. //  the minimized window.
  147. HCURSOR CCList_1Dlg::OnQueryDragIcon()
  148. {
  149. return (HCURSOR) m_hIcon;
  150. }
  151. BOOL CCList_1Dlg::Validate()
  152. {
  153. /* UpdateData(TRUE);
  154. m_name.TrimLeft();
  155. m_sex.TrimLeft();
  156. m_class.TrimLeft();
  157. // m_ListBox.TrimLeft();
  158. if(m_name.IsEmpty()||m_sex.IsEmpty()||m_class.IsEmpty()||m_ListBox.IsEmpty())
  159. {
  160. MessageBox("输入信息无效");
  161. return FALSE;
  162. }
  163. return TRUE;
  164. */
  165. return TRUE;
  166. }
  167. void CCList_1Dlg::OnButtonAdd() 
  168. {
  169. // TODO: Add your control notification handler code here
  170.    int Index,test;
  171.    UpdateData(TRUE);
  172.    test=m_ListBox.FindStringExact(-1,m_name);
  173.    if(test!=LB_ERR)return;
  174.    Index=m_ListBox.AddString(m_name);
  175.    m_ListBox.SetItemData(Index,m_id);
  176.    UpdateData(FALSE);
  177.    GetDlgItem(IDC_DEL_BUTTON1)->EnableWindow(TRUE);
  178. }
  179. void CCList_1Dlg::OnSelchangeList1() 
  180. {
  181. // TODO: Add your control notification handler code here
  182. int nIndex=m_ListBox.GetCurSel();
  183. m_ListBox.GetText(nIndex,m_name);
  184. m_id=m_ListBox.GetItemData(nIndex);
  185. UpdateData(FALSE);
  186. }
  187. void CCList_1Dlg::OnDelButton1() 
  188. {
  189. // TODO: Add your control notification handler code here
  190.     int Index;
  191. Index=m_ListBox.GetCurSel();
  192.      m_ListBox.DeleteString(Index);  
  193.   Index=m_ListBox.GetCurSel();
  194.   if(Index==LB_ERR)GetDlgItem(IDC_DEL_BUTTON1)->EnableWindow(FALSE);
  195. }