QuakeGod
2022-07-22 fc8a81d80e32cdafdae319cf439145db6613c793
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once
 
 
// CMyDlgBarFuncKey 对话框
 
 
 
class CMyDlgBarFuncKey : public CDialogBar
{
    DECLARE_DYNAMIC(CMyDlgBarFuncKey)
    typedef struct tagStructButton {
        int nID;
        CString sCaption;
 
    }structButton;
 
public:
    CMyDlgBarFuncKey(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CMyDlgBarFuncKey();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOGBAR_FUNC_KEYS };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
public:
    CButton m_buttons[3][12];
 
    int m_Lines=3;
 
    LRESULT OnInitDialog(WPARAM wParam, LPARAM lParam);
    virtual BOOL Create(CWnd* pParentWnd, UINT nIDTemplate, UINT nStyle, UINT nID);
    virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHandler);
    afx_msg void OnBnClickedButton1();
};