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

IP电话/视频会议

开发平台:

Visual C++

  1. // MyDialogBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MyDialogBar.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyDialogBar
  12. CMyDialogBar::CMyDialogBar()
  13. {
  14. }
  15. CMyDialogBar::~CMyDialogBar()
  16. {
  17. }
  18. BEGIN_MESSAGE_MAP(CMyDialogBar, CDialogBar)
  19. //{{AFX_MSG_MAP(CMyDialogBar)
  20. ON_WM_CTLCOLOR()
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMyDialogBar message handlers
  25. HBRUSH CMyDialogBar::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 
  26. {
  27. static HBRUSH b = ::CreateSolidBrush( RGB( 214 , 239 , 255 ) );
  28. return b;
  29. }