GRIDFRM.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // GridFrm.cpp : implementation of the CGridFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 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 "MDIBind.h"
  14. #include "GridFrm.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CGridFrame
  22. IMPLEMENT_DYNCREATE(CGridFrame, CMDIChildWnd)
  23. BEGIN_MESSAGE_MAP(CGridFrame, CMDIChildWnd)
  24. //{{AFX_MSG_MAP(CGridFrame)
  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. // CGridFrame construction/destruction
  31. CGridFrame::CGridFrame()
  32. {
  33. // TODO: add member initialization code here
  34. }
  35. CGridFrame::~CGridFrame()
  36. {
  37. }
  38. BOOL CGridFrame::PreCreateWindow(CREATESTRUCT& cs)
  39. {
  40. // TODO: Modify the Window class or styles here by modifying
  41. //  the CREATESTRUCT cs
  42. cs.cy=200;cs.cx=300;
  43. return CMDIChildWnd::PreCreateWindow(cs);
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CGridFrame diagnostics
  47. #ifdef _DEBUG
  48. void CGridFrame::AssertValid() const
  49. {
  50. CMDIChildWnd::AssertValid();
  51. }
  52. void CGridFrame::Dump(CDumpContext& dc) const
  53. {
  54. CMDIChildWnd::Dump(dc);
  55. }
  56. #endif //_DEBUG
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CGridFrame message handlers