ListCtrlEx.cpp
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- // ListCtrlEx.cpp : implementation file
- //
- #include "stdafx.h"
- #include "ListCtrlEx.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- #pragma comment( lib , "msimg32.lib" )
- /////////////////////////////////////////////////////////////////////////////
- // CListCtrlEx
- CListCtrlEx::CListCtrlEx()
- {
- }
- CListCtrlEx::~CListCtrlEx()
- {
- }
- BEGIN_MESSAGE_MAP(CListCtrlEx, CListCtrl)
- //{{AFX_MSG_MAP(CListCtrlEx)
- ON_WM_SIZE()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CListCtrlEx message handlers
- void CListCtrlEx::PreSubclassWindow()
- {
- this->SetTextBkColor( RGB( 214 , 239 , 255 ) );
- this->SetBkColor( RGB( 214 , 239 , 255 ) );
- this->header.SubclassDlgItem ( 0 , this );
- CListCtrl::PreSubclassWindow( );
- }
- void CListCtrlEx::OnSize(UINT nType, int cx, int cy)
- {
- CListCtrl::OnSize(nType, cx, cy);
- this->Invalidate( );
- }