mrDarker
2025-07-16 1dbe46cd9d0f181d08d5a69f72d8548628a13b9d
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
36
37
#pragma once
 
#include "EdgeInspector_App.h"
#include "General_Draw.h"
 
 
class CViewRecipeNew : public CDialog
{
    DECLARE_DYNAMIC(CViewRecipeNew)
 
public:
    CViewRecipeNew(CWnd* pParent = NULL);   // 钎霖 积己磊涝聪促.
    virtual ~CViewRecipeNew();
 
// 措拳 惑磊 单捞磐涝聪促.
    enum { IDD = IDD_DLG_RECIPE_NEW };
 
protected:
    virtual BOOL OnInitDialog();
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 瘤盔涝聪促.
    afx_msg void OnPaint();
    afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);    
    DECLARE_MESSAGE_MAP()
    DECLARE_EVENTSINK_MAP()
    void ClickBtnRecipenewOk();
    void ClickBtnRecipenewCancel();
 
public:
    CString            GetNewRecipeName(){return m_strNewRecipeName;}
    CString            GetNewRecipeComment(){return m_strNewRecipeComment;}
 
protected:
    CString                m_strNewRecipeName;    
    CString                m_strNewRecipeComment;    
    CFontControl        m_FontControl;
 
};