MyDialog3.cpp
资源名称:TTX.rar [点击查看]
上传用户:tengfei20
上传日期:2022-07-03
资源大小:11400k
文件大小:1k
源码类别:
界面编程
开发平台:
C/C++
- // MyDialog3.cpp : implementation file
- //
- #include "stdafx.h"
- #include "TTX.h"
- #include "MyDialog3.h"
- // MyDialog3 dialog
- IMPLEMENT_DYNAMIC(MyDialog3, CDialog)
- MyDialog3::MyDialog3(CWnd* pParent /*=NULL*/)
- : CDialog(MyDialog3::IDD, pParent)
- , XXX(0)
- , YYY(0)
- , RRR(0)
- , rrr(0)
- {
- #ifndef _WIN32_WCE
- EnableActiveAccessibility();
- #endif
- }
- MyDialog3::~MyDialog3()
- {
- }
- void MyDialog3::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- DDX_Text(pDX, IDC_EDIT1, XXX);
- DDV_MinMaxInt(pDX, XXX, 0, 1500);
- DDX_Text(pDX, IDC_EDIT2, YYY);
- DDV_MinMaxInt(pDX, YYY, 0, 1500);
- DDX_Text(pDX, IDC_EDIT3, RRR);
- DDV_MinMaxInt(pDX, RRR, 0, 1500);
- DDX_Text(pDX, IDC_EDIT4, rrr);
- DDV_MinMaxInt(pDX, rrr, 0, 1500);
- }
- BEGIN_MESSAGE_MAP(MyDialog3, CDialog)
- END_MESSAGE_MAP()
- // MyDialog3 message handlers