QuakeGod
2023-10-20 0200a36062386b937567265e3ea01f93eaa8f1f5
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
#pragma once
 
 
// CDialogSelDevice 对话框
 
class CDialogSelDevice : public CDialogEx
{
    DECLARE_DYNAMIC(CDialogSelDevice)
 
public:
    CDialogSelDevice(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CDialogSelDevice();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOG_SEL_DEVICE };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
public:
    afx_msg void OnBnClickedOk();
    virtual BOOL OnInitDialog();
    CListBox m_list_family;
    CListBox m_list_device;
};