- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
MyDialog1.cpp
资源名称:TTX.rar [点击查看]
上传用户:tengfei20
上传日期:2022-07-03
资源大小:11400k
文件大小:1k
源码类别:
界面编程
开发平台:
C/C++
- // MyDialog1.cpp : implementation file
- //
- #include "stdafx.h"
- #include "TTX.h"
- #include "MyDialog1.h"
- // MyDialog1 dialog
- IMPLEMENT_DYNAMIC(MyDialog1, CDialog)
- MyDialog1::MyDialog1(CWnd* pParent /*=NULL*/)
- : CDialog(MyDialog1::IDD, pParent)
- , XX1(0)
- , YY1(0)
- , XX2(0)
- , YY2(0)
- {
- #ifndef _WIN32_WCE
- EnableActiveAccessibility();
- #endif
- }
- MyDialog1::~MyDialog1()
- {
- }
- void MyDialog1::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- DDX_Text(pDX, IDC_EDIT1, XX1);
- DDV_MinMaxInt(pDX, XX1, 0, 1500);
- DDX_Text(pDX, IDC_EDIT2, YY1);
- DDV_MinMaxInt(pDX, YY1, 0, 1500);
- DDX_Text(pDX, IDC_EDIT3, XX2);
- DDV_MinMaxInt(pDX, XX2, 0, 1500);
- DDX_Text(pDX, IDC_EDIT4, YY2);
- DDV_MinMaxInt(pDX, YY2, 0, 1500);
- }
- BEGIN_MESSAGE_MAP(MyDialog1, CDialog)
- END_MESSAGE_MAP()
- // MyDialog1 message handlers