SetDlg.cpp
资源名称:PPTtimer.rar [点击查看]
上传用户:chpname
上传日期:2018-11-08
资源大小:69k
文件大小:1k
源码类别:
对话框与窗口
开发平台:
Visual C++
- // SetDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "PPTtimer.h"
- #include "SetDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CSetDlg dialog
- CSetDlg::CSetDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CSetDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CSetDlg)
- m_SetHour = 0;
- m_SetMinute = 0;
- m_SetSecond = 0;
- //}}AFX_DATA_INIT
- }
- void CSetDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CSetDlg)
- DDX_Text(pDX, IDC_EDIT_HOUR, m_SetHour);
- DDV_MinMaxUInt(pDX, m_SetHour, 0, 99);
- DDX_Text(pDX, IDC_EDIT_MIN, m_SetMinute);
- DDV_MinMaxUInt(pDX, m_SetMinute, 0, 59);
- DDX_Text(pDX, IDC_EDIT_SEC, m_SetSecond);
- DDV_MinMaxUInt(pDX, m_SetSecond, 0, 59);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CSetDlg, CDialog)
- //{{AFX_MSG_MAP(CSetDlg)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CSetDlg message handlers
- void CSetDlg::OnOK()
- {
- UpdateData();
- CDialog::OnOK();
- }