MyDialogBar.cpp
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- // MyDialogBar.cpp : implementation file
- //
- #include "stdafx.h"
- #include "MyDialogBar.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CMyDialogBar
- CMyDialogBar::CMyDialogBar()
- {
- }
- CMyDialogBar::~CMyDialogBar()
- {
- }
- BEGIN_MESSAGE_MAP(CMyDialogBar, CDialogBar)
- //{{AFX_MSG_MAP(CMyDialogBar)
- ON_WM_CTLCOLOR()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CMyDialogBar message handlers
- HBRUSH CMyDialogBar::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
- {
- static HBRUSH b = ::CreateSolidBrush( RGB( 214 , 239 , 255 ) );
- return b;
- }