QuakeGod
2023-09-12 78e91efc666606328e3fc63fbd54eb2da4442799
提交 | 用户 | age
418cb3 1 #pragma once
Q 2 #include <afxtoolbar.h>
df0321 3 /*
418cb3 4 typedef struct tagStructButton {
Q 5     int nID;
6     CString sCaption;
7
8 }structButton;
df0321 9 */
418cb3 10 class CMyFuncKeyToolBar :
Q 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