#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;
|
};
|