// 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 消息处理程序
|