12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // WatchPage.cpp : implementation file
- //
- #include "stdafx.h"
- #include "IDE.h"
- #include "WatchPage.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CWatchPage property page
- IMPLEMENT_DYNCREATE(CWatchPage, CPropertyPage)
- CWatchPage::CWatchPage() : CPropertyPage(CWatchPage::IDD)
- {
- //{{AFX_DATA_INIT(CWatchPage)
- m_nLowwer = 0;
- m_nUpper = 0;
- m_nHandType = -1;
- //}}AFX_DATA_INIT
- }
- CWatchPage::~CWatchPage()
- {
- }
- void CWatchPage::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CWatchPage)
- DDX_Text(pDX, IDC_LOWWER, m_nLowwer);
- DDX_Text(pDX, IDC_UPPER, m_nUpper);
- DDX_Radio(pDX, IDC_HANDTYPE, m_nHandType);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CWatchPage, CPropertyPage)
- //{{AFX_MSG_MAP(CWatchPage)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CWatchPage message handlers
|