InputComboBox.h
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:1k
源码类别:

组合框控件

开发平台:

Visual C++

  1. #if !defined(AFX_INPUTCOMBOBOX_H__C0D713EF_3BB7_4EAD_A2A7_B2AD56814362__INCLUDED_)
  2. #define AFX_INPUTCOMBOBOX_H__C0D713EF_3BB7_4EAD_A2A7_B2AD56814362__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // InputComboBox.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CInputComboBox window
  10. class CInputComboBox : public CComboBox
  11. {
  12. // Construction
  13. public:
  14. CInputComboBox();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CInputComboBox)
  22. public:
  23. virtual BOOL PreTranslateMessage(MSG* pMsg);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. int AddUniqueString(CString str);
  28. void OnCmd();
  29. void UpdateInput();
  30. void InvokeAction();
  31. CString m_strInput;
  32. virtual ~CInputComboBox();
  33. // Generated message map functions
  34. protected:
  35. //{{AFX_MSG(CInputComboBox)
  36. afx_msg void OnSelchange();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. /////////////////////////////////////////////////////////////////////////////
  41. //{{AFX_INSERT_LOCATION}}
  42. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  43. #endif // !defined(AFX_INPUTCOMBOBOX_H__C0D713EF_3BB7_4EAD_A2A7_B2AD56814362__INCLUDED_)