MyStatusBar.cpp
上传用户:kd9000
上传日期:2021-04-13
资源大小:2148k
文件大小:0k
源码类别:

状态条

开发平台:

Visual C++

  1. #include "StdAfx.h"
  2. #include "MyStatusBar.h"
  3. CMyStatusBar::CMyStatusBar(void)
  4. {
  5. }
  6. CMyStatusBar::~CMyStatusBar(void)
  7. {
  8. }
  9. HWND CMyStatusBar::CreateStatusBar(int styles, HWND hParent,  int id , HINSTANCE hInst)
  10. {
  11. InitCommonControls();
  12. hInstance=hInst;
  13. hStatusBar=CreateWindow( STATUSCLASSNAME,  NULL, styles
  14.         , 0, 0, 0, 0, hParent, 
  15. (HMENU) id, hInst, NULL); 
  16. return hStatusBar;
  17. }
  18. HWND CMyStatusBar::GetHandle()
  19. {
  20. return hStatusBar;
  21. }