ComboBoxEx.h
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #if !defined(AFX_COMBOBOXEX_H__115F422E_5CD5_11D1_ABBA_00A0243D1382__INCLUDED_)
  2. #define AFX_COMBOBOXEX_H__115F422E_5CD5_11D1_ABBA_00A0243D1382__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CComboBoxEx window
  8. class CAutoComplete : public CComboBox
  9. {
  10. // Construction
  11. public:
  12. CAutoComplete();
  13. // Attributes
  14. public:
  15. // Operations
  16. public:
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CAutoComplete)
  20. public:
  21. virtual BOOL PreTranslateMessage(MSG* pMsg);
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. virtual ~CAutoComplete();
  26. BOOL m_bAutoComplete; //是否智能输入
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(CAutoComplete)
  30. afx_msg void OnEditUpdate();
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. /////////////////////////////////////////////////////////////////////////////
  35. //{{AFX_INSERT_LOCATION}}
  36. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  37. #endif // !defined(AFX_COMBOBOXEX_H__115F422E_5CD5_11D1_ABBA_00A0243D1382__INCLUDED_)