EditListBoxDlg.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // EditListBoxDlg.h : header file
  2. //
  3. #if !defined(AFX_EDITLISTBOXDLG_H__1EB69633_FBE8_4F27_9839_4055DA656FF2__INCLUDED_)
  4. #define AFX_EDITLISTBOXDLG_H__1EB69633_FBE8_4F27_9839_4055DA656FF2__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "GuiListEdit.h"
  9. #include "GuiDropDownEdit.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CEditListBoxDlg dialog
  12. class CEditListBoxDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CEditListBoxDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CEditListBoxDlg)
  19. enum { IDD = IDD_EDITLISTBOX_DIALOG };
  20. // NOTE: the ClassWizard will add data members here
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CEditListBoxDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. CGuiListEdit ListBox;
  28. CGuiDropDownEdit m_edit;
  29. // Implementation
  30. protected:
  31. HICON m_hIcon;
  32. // Generated message map functions
  33. //{{AFX_MSG(CEditListBoxDlg)
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  36. afx_msg void OnPaint();
  37. afx_msg HCURSOR OnQueryDragIcon();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. //{{AFX_INSERT_LOCATION}}
  42. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  43. #endif // !defined(AFX_EDITLISTBOXDLG_H__1EB69633_FBE8_4F27_9839_4055DA656FF2__INCLUDED_)