hellofrm.cpp
上传用户:liudazhe
上传日期:2007-01-02
资源大小:51k
文件大小:2k
源码类别:

菜单

开发平台:

Visual C++

  1. // HelloFrm.cpp : implementation of the CHelloFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "MDI.h"
  14. #include "HelloFrm.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CHelloFrame
  22. IMPLEMENT_DYNCREATE(CHelloFrame, CMDIChildWnd)
  23. BEGIN_MESSAGE_MAP(CHelloFrame, CMDIChildWnd)
  24. //{{AFX_MSG_MAP(CHelloFrame)
  25. // NOTE - the ClassWizard will add and remove mapping macros here.
  26. //    DO NOT EDIT what you see in these blocks of generated code !
  27. //}}AFX_MSG_MAP
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CHelloFrame construction/destruction
  31. CHelloFrame::CHelloFrame()
  32. {
  33. }
  34. CHelloFrame::~CHelloFrame()
  35. {
  36. }
  37. BOOL CHelloFrame::PreCreateWindow(CREATESTRUCT& cs)
  38. {
  39. return CMDIChildWnd::PreCreateWindow(cs);
  40. }
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CHelloFrame diagnostics
  43. #ifdef _DEBUG
  44. void CHelloFrame::AssertValid() const
  45. {
  46. CMDIChildWnd::AssertValid();
  47. }
  48. void CHelloFrame::Dump(CDumpContext& dc) const
  49. {
  50. CMDIChildWnd::Dump(dc);
  51. }
  52. #endif //_DEBUG
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CHelloFrame message handlers