123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // SetThreshold.cpp : implementation file
- //
- #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 dialog
- CSetThreshold::CSetThreshold(CWnd* pParent /*=NULL*/)
- : CDialog(CSetThreshold::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CSetThreshold)
- m_hangTh = _T("3");
- m_hookoffTh = _T("18");
- //}}AFX_DATA_INIT
- }
- void CSetThreshold::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CSetThreshold)
- DDX_Text(pDX, IDC_HANGTH, m_hangTh);
- DDX_Text(pDX, IDC_HOOKOFFTH, m_hookoffTh);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CSetThreshold, CDialog)
- //{{AFX_MSG_MAP(CSetThreshold)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CSetThreshold message handlers
|