ChildFrm.cpp
上传用户:icamtech05
上传日期:2020-11-24
资源大小:10883k
文件大小:1k
源码类别:

编辑框

开发平台:

Visual C++

  1. // ChildFrm.cpp : CChildFrame 类的实现
  2. //
  3. #include "stdafx.h"
  4. #include "MyEditer.h"
  5. #include "ChildFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CChildFrame
  10. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  11. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  12. END_MESSAGE_MAP()
  13. // CChildFrame 构造/析构
  14. CChildFrame::CChildFrame()
  15. {
  16. // TODO: 在此添加成员初始化代码
  17. }
  18. CChildFrame::~CChildFrame()
  19. {
  20. }
  21. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  22. {
  23. // TODO: 在此处通过修改 CREATESTRUCT cs 来修改窗口类或样式
  24. if( !CMDIChildWnd::PreCreateWindow(cs) )
  25. return FALSE;
  26. return TRUE;
  27. }
  28. // CChildFrame 诊断
  29. #ifdef _DEBUG
  30. void CChildFrame::AssertValid() const
  31. {
  32. CMDIChildWnd::AssertValid();
  33. }
  34. void CChildFrame::Dump(CDumpContext& dc) const
  35. {
  36. CMDIChildWnd::Dump(dc);
  37. }
  38. #endif //_DEBUG
  39. // CChildFrame 消息处理程序