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

IP电话/视频会议

开发平台:

Visual C++

  1. // MyReBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MyReBar.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyReBar
  12. CMyReBar::CMyReBar()
  13. {
  14. }
  15. CMyReBar::~CMyReBar()
  16. {
  17. }
  18. BEGIN_MESSAGE_MAP(CMyReBar, CReBar)
  19. //{{AFX_MSG_MAP(CMyReBar)
  20. ON_WM_SIZE()
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMyReBar message handlers
  25. void CMyReBar::OnSize(UINT nType, int cx, int cy) 
  26. {
  27. CReBar::OnSize( nType, cx, cy );
  28. if( this->GetWindow( GW_CHILD ) )
  29. this->GetWindow( GW_CHILD )->MoveWindow( 0 , 0 , cx , cy );
  30. }