AutoCompletionComboBox.h
上传用户:hbjdyb2005
上传日期:2021-01-26
资源大小:168k
文件大小:1k
源码类别:

组合框控件

开发平台:

Visual C++

  1. #if !defined(AFX_AUTOCOMPLETIONCOMBOBOX_H__A2F5170E_7F18_11D2_9B7D_006097F7F4CE__INCLUDED_)
  2. #define AFX_AUTOCOMPLETIONCOMBOBOX_H__A2F5170E_7F18_11D2_9B7D_006097F7F4CE__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // AutoCompletionComboBox.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CAutoCompletionComboBox window
  10. class CAutoCompletionComboBox : public CComboBox
  11. {
  12. // Construction
  13. public:
  14. CAutoCompletionComboBox();
  15. protected:
  16.   virtual void HandleCompletion();
  17.   virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  18. private:
  19.   CEdit*      m_pEdit;
  20. // Attributes
  21. public:
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CAutoCompletionComboBox)
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CAutoCompletionComboBox();
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CAutoCompletionComboBox)
  34. // NOTE - the ClassWizard will add and remove member functions here.
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_AUTOCOMPLETIONCOMBOBOX_H__A2F5170E_7F18_11D2_9B7D_006097F7F4CE__INCLUDED_)