MyToolBar.h
上传用户:sz4588
上传日期:2021-04-13
资源大小:2399k
文件大小:1k
- #pragma once
- class CMyToolBar
- {
- public:
- HWND hToolBar;
- HINSTANCE hInstance;
- public:
- CMyToolBar(void);
- public:
- ~CMyToolBar(void);
- public:
- HWND CreateToolBar(int styles, HWND hParent, int id , HINSTANCE hInst);
- public:
- BOOL AddButton(BYTE fsState, BYTE fsStyle, int iBitmap, int idCommand, LPTSTR iString, DWORD_PTR dwData);
- public:
- void SetButtonImages(int cx,int cy,int idb_Image,int btnNums);
- public:
- HWND AddNonButtonControl(LPTSTR className,int styles,int ID,int width,int height,int btnIndex,int iCommand);
- BOOL DoNotify(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
- };