DLG_ARC1.cpp
上传用户:shangwu01
上传日期:2013-04-22
资源大小:707k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

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