ViewProperty.cpp
上传用户:mosfetic
上传日期:2022-06-16
资源大小:4612k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // ViewProperty.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "DrawSys.h"
  5. #include "ViewProperty.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CViewProperty dialog
  13. CViewProperty::CViewProperty(CWnd* pParent /*=NULL*/)
  14. : CDialog(CViewProperty::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CViewProperty)
  17. m_strID = _T("");
  18. m_iLength = 0;
  19. m_strTime = _T("");
  20. m_strType = _T("");
  21. m_iWidth = 0;
  22. //}}AFX_DATA_INIT
  23. }
  24. void CViewProperty::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CViewProperty)
  28. DDX_Text(pDX, IDC_EDIT_ID, m_strID);
  29. DDX_Text(pDX, IDC_EDIT_LENGTH, m_iLength);
  30. DDX_Text(pDX, IDC_EDIT_TIME, m_strTime);
  31. DDX_Text(pDX, IDC_EDIT_TYPE, m_strType);
  32. DDX_Text(pDX, IDC_EDIT_WIDTH, m_iWidth);
  33. //}}AFX_DATA_MAP
  34. }
  35. BEGIN_MESSAGE_MAP(CViewProperty, CDialog)
  36. //{{AFX_MSG_MAP(CViewProperty)
  37. // NOTE: the ClassWizard will add message map macros here
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CViewProperty message handlers