mrDarker
2025-06-26 da96e6da0b677c6a4e96308aaecd3d619a8e4db2
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
#pragma once
#include "afxdialogex.h"
 
 
// CRecipeDeviceBindDlg 对话框
 
class CRecipeDeviceBindDlg : public CDialogEx
{
    DECLARE_DYNAMIC(CRecipeDeviceBindDlg)
 
public:
    CRecipeDeviceBindDlg(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CRecipeDeviceBindDlg();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOG_RECIPE_DEVICE_BIND };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
    virtual BOOL OnInitDialog();
    afx_msg void OnClose();
    afx_msg void OnSize(UINT nType, int cx, int cy);
    DECLARE_MESSAGE_MAP()
 
private:
    struct DeviceWidget {
        CEdit* editDeviceID;
        CEdit* editDeviceName;
        CComboBox* comboRecipeID;
    };
 
    std::vector<DeviceWidget> m_vecDevices;
};