ChildFrm.cpp
上传用户:y440e3
上传日期:2010-03-08
资源大小:200k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "draw.h"
  5. #include "ChildFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CChildFrame
  13. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  14. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  15. //{{AFX_MSG_MAP(CChildFrame)
  16. ON_WM_CLOSE()
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CChildFrame construction/destruction
  21. CChildFrame::CChildFrame()
  22. {
  23. // TODO: add member initialization code here
  24. //SetWindowText("图形试图");
  25. }
  26. CChildFrame::~CChildFrame()
  27. {
  28. }
  29. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  30. {
  31. // TODO: Modify the Window class or styles here by modifying
  32. //  the CREATESTRUCT cs
  33. return CMDIChildWnd::PreCreateWindow(cs);
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CChildFrame diagnostics
  37. #ifdef _DEBUG
  38. void CChildFrame::AssertValid() const
  39. {
  40. CMDIChildWnd::AssertValid();
  41. }
  42. void CChildFrame::Dump(CDumpContext& dc) const
  43. {
  44. CMDIChildWnd::Dump(dc);
  45. }
  46. #endif //_DEBUG
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CChildFrame message handlers
  49. void CChildFrame::OnClose() 
  50. {
  51. // TODO: Add your message handler code here and/or call default
  52. return;
  53. CMDIChildWnd::OnClose();
  54. }