chenluhua1980
2025-12-11 33f080ddc32f3545b685b2e0a7a5df3c35894270
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;
};