-
Notifications
You must be signed in to change notification settings - Fork 0
/
PAGE1.h
48 lines (42 loc) · 1.19 KB
/
PAGE1.h
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
40
41
42
43
44
45
46
47
48
#pragma once
// PAGE1 对话框
class PAGE1 : public CDialogEx
{
DECLARE_DYNAMIC(PAGE1)
public:
PAGE1(CWnd* pParent = nullptr); // 标准构造函数
virtual ~PAGE1();
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_DIALOG_PAGE1 };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
virtual BOOL OnInitDialog();
DECLARE_MESSAGE_MAP()
public:
CButton _switch_three_speed;
CButton _switch_score;
CButton _switch_hidden_user;
CButton _switch_cool_down;
CButton _switch_hook_damage;
CButton _switch_gather_monster;
CButton _switch_gather_items;
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
CComboBox m_ctl_sel_autoplay;
afx_msg void OnCbnSelchangeCombo2();
afx_msg void OnBnClickedButton1();
afx_msg void OnBnClickedButton2();
afx_msg void OnBnClickedButton3();
afx_msg void OnBnClickedButton4();
afx_msg void OnCbnSelchangeCombo3();
CComboBox m_ctl_sel_town;
afx_msg void OnBnClickedButton5();
afx_msg void OnBnClickedCheck1();
afx_msg void OnBnClickedCheck2();
afx_msg void OnBnClickedCheck3();
afx_msg void OnBnClickedCheck4();
afx_msg void OnBnClickedCheck5();
afx_msg void OnBnClickedCheck6();
afx_msg void OnBnClickedCheck7();
};