Dialog3.cpp
上传用户:hnhlzg
上传日期:2013-10-19
资源大小:289k
文件大小:1k
源码类别:

数学计算

开发平台:

Visual C++

  1. // Dialog3.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "DSplit.h"
  5. #include "Dialog3.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Dialog3 dialog
  13. Dialog3::Dialog3(CWnd* pParent /*=NULL*/)
  14. : CDialog(Dialog3::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(Dialog3)
  17. m_x = 50;
  18. m_y = 50;
  19. m_x1 = 100;
  20. m_y1 = 100;
  21. //}}AFX_DATA_INIT
  22. }
  23. void Dialog3::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(Dialog3)
  27. DDX_Text(pDX, IDC_EDIT1, m_x);
  28. DDX_Text(pDX, IDC_EDIT2, m_y);
  29. DDX_Text(pDX, IDC_EDIT3, m_x1);
  30. DDX_Text(pDX, IDC_EDIT4, m_y1);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(Dialog3, CDialog)
  34. //{{AFX_MSG_MAP(Dialog3)
  35. // NOTE: the ClassWizard will add message map macros here
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // Dialog3 message handlers