123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #include "stdafx.h"
- #include "UPhoneBox.h"
- #include "SetThreshold.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- CSetThreshold::CSetThreshold(CWnd* pParent )
- : CDialog(CSetThreshold::IDD, pParent)
- {
-
- m_hangTh = _T("3");
- m_hookoffTh = _T("18");
-
- }
- void CSetThreshold::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
- DDX_Text(pDX, IDC_HANGTH, m_hangTh);
- DDX_Text(pDX, IDC_HOOKOFFTH, m_hookoffTh);
-
- }
- BEGIN_MESSAGE_MAP(CSetThreshold, CDialog)
-
-
-
- END_MESSAGE_MAP()
|