LAPTOP-T815PCOQ\25526
2024-12-16 e2aba4b899f691b68a5d95f27981d25581142cb1
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
#pragma once
#include "afxdialogex.h"
#include "GridCtrl.h"
 
 
// CRecipeListDlg 对话框
 
class CRecipeListDlg : public CDialogEx
{
    DECLARE_DYNAMIC(CRecipeListDlg)
 
public:
    CRecipeListDlg(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CRecipeListDlg();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOG_RECIPE_LIST };
#endif
 
private:
    void InitRecipeLise();
    void FillRecipeLise();
 
private:
    CGridCtrl m_grid;
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
    virtual BOOL OnInitDialog();
    afx_msg void OnBnClickedButtonCreateRecipe();
    afx_msg void OnBnClickedButtonDeleteRecipe();
    DECLARE_MESSAGE_MAP()
};