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

菜单

开发平台:

Visual C++

  1. // BncFrm.cpp : implementation file
  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 "BncFrm.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CBounceFrame
  22. IMPLEMENT_DYNCREATE(CBounceFrame, CMDIChildWnd)
  23. CBounceFrame::CBounceFrame()
  24. {
  25. }
  26. CBounceFrame::~CBounceFrame()
  27. {
  28. }
  29. BEGIN_MESSAGE_MAP(CBounceFrame, CMDIChildWnd)
  30. //{{AFX_MSG_MAP(CBounceFrame)
  31. // NOTE - the ClassWizard will add and remove mapping macros here.
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CBounceFrame message handlers
  36. BOOL CBounceFrame::PreCreateWindow(CREATESTRUCT& cs) 
  37. {
  38. return CMDIChildWnd::PreCreateWindow(cs);
  39. }
  40. BOOL CBounceFrame::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CMDIFrameWnd* pParentWnd, CCreateContext* pContext) 
  41. {
  42. return CMDIChildWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, pContext);
  43. }