ChildFrm.cpp
上传用户:zhoushen
上传日期:2022-06-15
资源大小:84k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

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