LAPTOP-SNT8I5JK\Boounion
2024-11-13 5471abe440f1b449293a3c93b3a638396682617a
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
49
50
51
52
53
54
55
56
 
// GangBond2860EmulatorDlg.h : Í·Îļþ
//
 
#pragma once
#include "HmTab.h"
#include "PageEquipment.h"
#include "PageUnit.h"
 
 
// CGangBond2860EmulatorDlg ¶Ô»°¿ò
class CGangBond2860EmulatorDlg : public CDialogEx
{
// ¹¹Ôì
public:
    CGangBond2860EmulatorDlg(CWnd* pParent = NULL);    // ±ê×¼¹¹Ô캯Êý
 
 
private:
    void ShowChildPage(int index);
    void Resize();
 
 
private:
    COLORREF m_crBkgnd;
    HBRUSH m_hbrBkgnd;
    CHmTab* m_pTab;
    CPageEquipment* m_pPageEquipment;
    CPageUnit* m_pPageUnitA;
    CPageUnit* m_pPageUnitB;
 
// ¶Ô»°¿òÊý¾Ý
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_GANGBOND2860EMULATOR_DIALOG };
#endif
 
    protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV Ö§³Ö
 
 
// ÊµÏÖ
protected:
    HICON m_hIcon;
 
    // Éú³ÉµÄÏûÏ¢Ó³É亯Êý
    virtual BOOL OnInitDialog();
    afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
    afx_msg void OnPaint();
    afx_msg HCURSOR OnQueryDragIcon();
    DECLARE_MESSAGE_MAP()
public:
    afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
    afx_msg void OnDestroy();
    afx_msg void OnSize(UINT nType, int cx, int cy);
    afx_msg void OnTabSelChanged(NMHDR* nmhdr, LRESULT* result);
};