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

菜单

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "ToolbarMenuDemoMDI.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, CSpawnMDIChildWnd)
  14. BEGIN_MESSAGE_MAP(CChildFrame, CSpawnMDIChildWnd)
  15. //{{AFX_MSG_MAP(CChildFrame)
  16. //}}AFX_MSG_MAP
  17. END_MESSAGE_MAP()
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CChildFrame construction/destruction
  20. CChildFrame::CChildFrame()
  21. {
  22. // COOLMENU SUPPORT
  23. cSpawn.LoadToolBarResource(IDR_MAINFRAME);
  24. cSpawn.AddToolBarResource(IDR_SYSTEMBAR);
  25. // END COOLMENU SUPPORT
  26. }
  27. CChildFrame::~CChildFrame()
  28. {
  29. }
  30. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  31. {
  32. // TODO: Modify the Window class or styles here by modifying
  33. //  the CREATESTRUCT cs
  34. return CMDIChildWnd::PreCreateWindow(cs);
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CChildFrame diagnostics
  38. #ifdef _DEBUG
  39. void CChildFrame::AssertValid() const
  40. {
  41. CMDIChildWnd::AssertValid();
  42. }
  43. void CChildFrame::Dump(CDumpContext& dc) const
  44. {
  45. CMDIChildWnd::Dump(dc);
  46. }
  47. #endif //_DEBUG
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CChildFrame message handlers