ChildFrm.cpp
上传用户:aphuaqiang
上传日期:2007-01-02
资源大小:62k
文件大小:1k
源码类别:

菜单

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "mymenu.h"
  5. #include "ChildFrm.h"
  6. #include "MainFrm.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CChildFrame
  14. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  15. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  16. //{{AFX_MSG_MAP(CChildFrame)
  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. }
  25. CChildFrame::~CChildFrame()
  26. {
  27. }
  28. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  29. {
  30. // TODO: Modify the Window class or styles here by modifying
  31. //  the CREATESTRUCT cs
  32. return CMDIChildWnd::PreCreateWindow(cs);
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CChildFrame diagnostics
  36. #ifdef _DEBUG
  37. void CChildFrame::AssertValid() const
  38. {
  39. CMDIChildWnd::AssertValid();
  40. }
  41. void CChildFrame::Dump(CDumpContext& dc) const
  42. {
  43. CMDIChildWnd::Dump(dc);
  44. }
  45. #endif //_DEBUG