ChildFrm.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "RibbonMDISample.h"
  5. #include "ChildFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CChildFrame
  13. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  14. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  15. //{{AFX_MSG_MAP(CChildFrame)
  16. ON_WM_CREATE()
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CChildFrame construction/destruction
  21. CChildFrame::CChildFrame()
  22. {
  23. // TODO: add member initialization code here
  24. }
  25. CChildFrame::~CChildFrame()
  26. {
  27. }
  28. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  29. {
  30. // TODO: Modify the Window class or styles here by modifying
  31. //  the CREATESTRUCT cs
  32. if( !CMDIChildWnd::PreCreateWindow(cs) )
  33. return FALSE;
  34. return TRUE;
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CChildFrame diagnostics
  38. #ifdef _DEBUG
  39. void CChildFrame::AssertValid() const
  40. {
  41. CMDIChildWnd::AssertValid();
  42. }
  43. void CChildFrame::Dump(CDumpContext& dc) const
  44. {
  45. CMDIChildWnd::Dump(dc);
  46. }
  47. #endif //_DEBUG
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CChildFrame message handlers
  50. int CChildFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  51. {
  52. if (CMDIChildWnd::OnCreate(lpCreateStruct) == -1)
  53. return -1;
  54. EnableOffice2007Frame(this, ((CXTPMDIFrameWnd*)GetParentFrame())->GetCommandBars()->GetPaintManager());
  55. return 0;
  56. }