ViewProperty.cpp
资源名称:DrawSys.zip [点击查看]
上传用户:mosfetic
上传日期:2022-06-16
资源大小:4612k
文件大小:1k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- // ViewProperty.cpp : implementation file
- //
- #include "stdafx.h"
- #include "DrawSys.h"
- #include "ViewProperty.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CViewProperty dialog
- CViewProperty::CViewProperty(CWnd* pParent /*=NULL*/)
- : CDialog(CViewProperty::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CViewProperty)
- m_strID = _T("");
- m_iLength = 0;
- m_strTime = _T("");
- m_strType = _T("");
- m_iWidth = 0;
- //}}AFX_DATA_INIT
- }
- void CViewProperty::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CViewProperty)
- DDX_Text(pDX, IDC_EDIT_ID, m_strID);
- DDX_Text(pDX, IDC_EDIT_LENGTH, m_iLength);
- DDX_Text(pDX, IDC_EDIT_TIME, m_strTime);
- DDX_Text(pDX, IDC_EDIT_TYPE, m_strType);
- DDX_Text(pDX, IDC_EDIT_WIDTH, m_iWidth);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CViewProperty, CDialog)
- //{{AFX_MSG_MAP(CViewProperty)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CViewProperty message handlers