SDC C-Project CF Review 프로그램
LYW
2021-07-08 630eb072cca33a7c633f6429a0b5a531d1b83268
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
#pragma once
#include "afxwin.h"
class CDlgCommon;
 
// CDlgUserPitchInpout ´ëÈ­ »óÀÚÀÔ´Ï´Ù.
 
class CDlgUserPitchInpout : public CDialog
{
    DECLARE_DYNAMIC(CDlgUserPitchInpout)
 
public:
    CDlgUserPitchInpout(CWnd* pParent = NULL);   // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù.
    virtual ~CDlgUserPitchInpout();
 
// ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù.
    enum { IDD = IDD_DIALOG_USER_PITCH };
    void SetDlgCommon(CDlgCommon* dlg){m_DlgCommon = dlg;};
    virtual BOOL OnInitDialog();
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV Áö¿øÀÔ´Ï´Ù.
 
    DECLARE_MESSAGE_MAP()
public:
    CDlgCommon* m_DlgCommon;
 
    int m_nXcount;
    int m_nXpitch;
    int m_nXpos;
    int m_nYcount;
    int m_nYpitch;
    int m_nYpos;
    afx_msg void OnBnClickedOk();
    afx_msg void OnBnClickedOk2();
    CComboBox m_comboCellSide;
    CComboBox m_comboInspectionMode;
};