ListCtrlEx.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // ListCtrlEx.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ListCtrlEx.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. #pragma comment( lib , "msimg32.lib" )
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CListCtrlEx
  13. CListCtrlEx::CListCtrlEx()
  14. {
  15. }
  16. CListCtrlEx::~CListCtrlEx()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CListCtrlEx, CListCtrl)
  20. //{{AFX_MSG_MAP(CListCtrlEx)
  21. ON_WM_SIZE()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CListCtrlEx message handlers
  26. void CListCtrlEx::PreSubclassWindow() 
  27. {
  28. this->SetTextBkColor( RGB( 214 , 239 , 255 ) );
  29. this->SetBkColor( RGB( 214 , 239 , 255 ) );
  30. this->header.SubclassDlgItem ( 0 , this );
  31. CListCtrl::PreSubclassWindow( );
  32. }
  33. void CListCtrlEx::OnSize(UINT nType, int cx, int cy) 
  34. {
  35. CListCtrl::OnSize(nType, cx, cy);
  36. this->Invalidate( );
  37. }