QuakeGod
2023-05-19 418cb35b936f21415807a2bcc21b2d75934bd4d2
提交 | 用户 | age
418cb3 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