DlgInfoQuery.cpp
上传用户:juying163
上传日期:2014-09-24
资源大小:5867k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. // DlgInfoQuery.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "3D0214.h"
  5. #include "DlgInfoQuery.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDlgInfoQuery dialog
  13. CDlgInfoQuery::CDlgInfoQuery(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDlgInfoQuery::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDlgInfoQuery)
  17. m_edit_X = 0.0;
  18. m_edit_Y = 0.0;
  19. m_edit_Z = 0.0;
  20. //}}AFX_DATA_INIT
  21. }
  22. void CDlgInfoQuery::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CDlgInfoQuery)
  26. DDX_Control(pDX, IDC_EDIT_Z, m_control_Z);
  27. DDX_Control(pDX, IDC_EDIT_Y, m_control_Y);
  28. DDX_Control(pDX, IDC_EDIT_X, m_control_X);
  29. DDX_Text(pDX, IDC_EDIT_X, m_edit_X);
  30. DDX_Text(pDX, IDC_EDIT_Y, m_edit_Y);
  31. DDX_Text(pDX, IDC_EDIT_Z, m_edit_Z);
  32. //}}AFX_DATA_MAP
  33. }
  34. BEGIN_MESSAGE_MAP(CDlgInfoQuery, CDialog)
  35. //{{AFX_MSG_MAP(CDlgInfoQuery)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CDlgInfoQuery message handlers
  40. BOOL CDlgInfoQuery::OnInitDialog() 
  41. {
  42. CDialog::OnInitDialog();
  43. // TODO: Add extra initialization here
  44. return TRUE;  // return TRUE unless you set the focus to a control
  45.               // EXCEPTION: OCX Property Pages should return FALSE
  46. }