MyDialog3.cpp
上传用户:tengfei20
上传日期:2022-07-03
资源大小:11400k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. // MyDialog3.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "TTX.h"
  5. #include "MyDialog3.h"
  6. // MyDialog3 dialog
  7. IMPLEMENT_DYNAMIC(MyDialog3, CDialog)
  8. MyDialog3::MyDialog3(CWnd* pParent /*=NULL*/)
  9. : CDialog(MyDialog3::IDD, pParent)
  10. , XXX(0)
  11. , YYY(0)
  12. , RRR(0)
  13. , rrr(0)
  14. {
  15. #ifndef _WIN32_WCE
  16. EnableActiveAccessibility();
  17. #endif
  18. }
  19. MyDialog3::~MyDialog3()
  20. {
  21. }
  22. void MyDialog3::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. DDX_Text(pDX, IDC_EDIT1, XXX);
  26. DDV_MinMaxInt(pDX, XXX, 0, 1500);
  27. DDX_Text(pDX, IDC_EDIT2, YYY);
  28. DDV_MinMaxInt(pDX, YYY, 0, 1500);
  29. DDX_Text(pDX, IDC_EDIT3, RRR);
  30. DDV_MinMaxInt(pDX, RRR, 0, 1500);
  31. DDX_Text(pDX, IDC_EDIT4, rrr);
  32. DDV_MinMaxInt(pDX, rrr, 0, 1500);
  33. }
  34. BEGIN_MESSAGE_MAP(MyDialog3, CDialog)
  35. END_MESSAGE_MAP()
  36. // MyDialog3 message handlers