LAPTOP-T815PCOQ\25526
2024-12-16 84de229b2326081d2e00e3ffb6654baca72b7969
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
// RecipeLiseDlg.cpp: 实现文件
//
 
#include "stdafx.h"
#include "BondEq.h"
#include "afxdialogex.h"
#include "RecipeLiseDlg.h"
 
 
// CRecipeLiseDlg 对话框
 
IMPLEMENT_DYNAMIC(CRecipeLiseDlg, CDialogEx)
 
CRecipeLiseDlg::CRecipeLiseDlg(CWnd* pParent /*=nullptr*/)
    : CDialogEx(IDD_DIALOG_RECIPE_LIST, pParent)
{
 
}
 
CRecipeLiseDlg::~CRecipeLiseDlg()
{
}
 
void CRecipeLiseDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
    DDX_Control(pDX, IDC_CUSTOM_RECIPE_LIST, m_grid);
}
 
 
BEGIN_MESSAGE_MAP(CRecipeLiseDlg, CDialogEx)
END_MESSAGE_MAP()
 
 
// CRecipeLiseDlg 消息处理程序