提交 | 用户 | age | ||
b978bf | 1 | #pragma once |
Q | 2 | #include <afxtoolbar.h> |
3 | ||
4 | typedef struct tagStructButton { | |
5 | int nID; | |
6 | CString sCaption; | |
7 | ||
8 | }structButton; | |
9 | ||
10 | class CMyFuncKeyToolBar : | |
11 | public CMFCToolBar | |
12 | { | |
13 | public: | |
14 | DECLARE_MESSAGE_MAP() | |
15 | afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); | |
16 | ||
17 | CButton m_buttons[100]; | |
18 | ||
19 | ||
20 | afx_msg void OnSize(UINT nType, int cx, int cy); | |
21 | }; | |
22 |