ListBoxDlg.h 886 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #pragma once
  2. // CListBoxDlg 对话框
  3. #include "DlgControlItem.h"
  4. class CListBoxDlg : public CDlgControlItem
  5. {
  6. DECLARE_DYNAMIC(CListBoxDlg)
  7. protected:
  8. CSkinListBox m_ListBox;
  9. CSkinListBox m_ListBox2;
  10. public:
  11. CListBoxDlg(CWnd* pParent = NULL); // 标准构造函数
  12. virtual ~CListBoxDlg();
  13. // 对话框数据
  14. enum { IDD = IDD_LISTBOXDLG };
  15. protected:
  16. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  17. DECLARE_MESSAGE_MAP()
  18. public:
  19. afx_msg void OnBnClickedButton1();
  20. virtual BOOL OnInitDialog();
  21. afx_msg void OnBnClickedButton14();
  22. afx_msg void OnBnClickedButton16();
  23. afx_msg void OnBnClickedButton17();
  24. afx_msg void OnBnClickedButton15();
  25. afx_msg void OnBnClickedButton18();
  26. afx_msg void OnBnClickedButton2();
  27. afx_msg void OnBnClickedButton3();
  28. afx_msg void OnBnClickedButton4();
  29. afx_msg void OnRbnDblclkList1();
  30. afx_msg void OnRbnDblclkList2();
  31. };