SplitFrm.cpp
上传用户:seaboy_04
上传日期:2013-02-24
资源大小:284k
文件大小:1k
源码类别:

其他行业

开发平台:

Visual C++

  1. // SplitFrm.cpp : implementation of the CSplitFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "DrawCli.h"
  5. #include "SplitFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSplitFrame
  13. IMPLEMENT_DYNCREATE(CSplitFrame, CMDIChildWnd)
  14. BEGIN_MESSAGE_MAP(CSplitFrame, CMDIChildWnd)
  15. //{{AFX_MSG_MAP(CSplitFrame)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code !
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CSplitFrame construction/destruction
  22. CSplitFrame::CSplitFrame()
  23. {
  24. // TODO: add member initialization code here
  25. }
  26. CSplitFrame::~CSplitFrame()
  27. {
  28. }
  29. BOOL CSplitFrame::PreCreateWindow(CREATESTRUCT& cs)
  30. {
  31. // TODO: Modify the Window class or styles here by modifying
  32. //  the CREATESTRUCT cs
  33. if( !CMDIChildWnd::PreCreateWindow(cs) )
  34. return FALSE;
  35. return TRUE;
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CSplitFrame diagnostics
  39. #ifdef _DEBUG
  40. void CSplitFrame::AssertValid() const
  41. {
  42. CMDIChildWnd::AssertValid();
  43. }
  44. void CSplitFrame::Dump(CDumpContext& dc) const
  45. {
  46. CMDIChildWnd::Dump(dc);
  47. }
  48. #endif //_DEBUG
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CSplitFrame message handlers