LWQ
2025-07-14 aef42eef51d1b86ac7217a88ce17c5156c30fe6d
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;
 
};