MyToolBar.h
上传用户:sz4588
上传日期:2021-04-13
资源大小:2399k
文件大小:1k
源码类别:

工具条

开发平台:

Visual C++

  1. #pragma once
  2. class CMyToolBar
  3. {
  4. public: 
  5. HWND hToolBar;
  6. HINSTANCE hInstance;
  7. public:
  8. CMyToolBar(void);
  9. public:
  10. ~CMyToolBar(void);
  11. public:
  12. HWND CreateToolBar(int styles, HWND hParent, int id , HINSTANCE hInst);
  13. public:
  14. BOOL AddButton(BYTE fsState, BYTE fsStyle, int iBitmap, int idCommand, LPTSTR iString, DWORD_PTR dwData);
  15. public:
  16. void SetButtonImages(int cx,int cy,int idb_Image,int btnNums);
  17. public:
  18. HWND AddNonButtonControl(LPTSTR className,int styles,int ID,int width,int height,int btnIndex,int iCommand);
  19. BOOL DoNotify(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  20. };