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

GIS编程

开发平台:

Visual C++

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