组合框.h
上传用户:shlcjx
上传日期:2008-11-20
资源大小:21k
文件大小:1k
源码类别:

组合框控件

开发平台:

Visual C++

  1. #if !defined(AFX_MYCOMBOBOX_H__1555680E_4B5D_4166_97F6_F497FFB551E5__INCLUDED_)
  2. #define AFX_MYCOMBOBOX_H__1555680E_4B5D_4166_97F6_F497FFB551E5__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyComboBox.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMyComboBox window
  10. class CMyComboBox : public CComboBox
  11. {
  12. // Construction
  13. public:
  14. CMyComboBox();
  15. COLORREF m_ColorText,m_ColorBk;
  16. CBrush m_Brush;
  17. //设置字体大小
  18. void SetFontSize(int iSize,CFont* font);
  19. // Attributes
  20. public:
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CMyComboBox)
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CMyComboBox();
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CMyComboBox)
  33. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  34. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_MYCOMBOBOX_H__1555680E_4B5D_4166_97F6_F497FFB551E5__INCLUDED_)