LAPTOP-SNT8I5JK\Boounion
2025-09-09 c119b8ef36718a8ca24b719cdbff86913cbca129
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
#include "afxdialogex.h"
 
 
// CDevicePropertyDlg 对话框
 
class CDevicePropertyDlg : public CDialogEx
{
    DECLARE_DYNAMIC(CDevicePropertyDlg)
 
public:
    CDevicePropertyDlg(CWnd* pParent = nullptr, int nDeviceID = 0);   // 标准构造函数
    virtual ~CDevicePropertyDlg();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOG_DEVICE_PROPERTY };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
    virtual BOOL OnInitDialog();
    DECLARE_MESSAGE_MAP()
 
private:
    int m_nDeviceID;
    CListCtrl m_listDeviceProperties;
};