mrDarker
2025-06-19 8ffc831c6bf37a73961e22efc145be4e8c8f1241
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
// RecipeDeviceBindDlg.cpp: 实现文件
//
 
#include "stdafx.h"
#include "Servo.h"
#include "afxdialogex.h"
#include "RecipeDeviceBindDlg.h"
 
 
// CRecipeDeviceBindDlg 对话框
 
IMPLEMENT_DYNAMIC(CRecipeDeviceBindDlg, CDialogEx)
 
CRecipeDeviceBindDlg::CRecipeDeviceBindDlg(CWnd* pParent /*=nullptr*/)
    : CDialogEx(IDD_DIALOG_RECIPE_DEVICE_BIND, pParent)
{
 
}
 
CRecipeDeviceBindDlg::~CRecipeDeviceBindDlg()
{
}
 
void CRecipeDeviceBindDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
}
 
 
BEGIN_MESSAGE_MAP(CRecipeDeviceBindDlg, CDialogEx)
END_MESSAGE_MAP()
 
 
// CRecipeDeviceBindDlg 消息处理程序