ChildFrm.h
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__B6B0AE2D_15EA_42DF_BE9F_A0F677C63844__INCLUDED_)
  5. #define AFX_CHILDFRM_H__B6B0AE2D_15EA_42DF_BE9F_A0F677C63844__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "MyPage1.h"
  10. #include "MyPage2.h"
  11. #include "MyPage3.h"
  12. #include "ExtChildResizablePropertySheet.h"
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CChildFrame
  15. class CChildFrame : public CExtNCW < CMDIChildWnd >
  16. {
  17. DECLARE_DYNCREATE(CChildFrame)
  18. public:
  19. CChildFrame();
  20. // Attributes
  21. public:
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CChildFrame)
  27. public:
  28. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  29. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  30. virtual BOOL PreTranslateMessage(MSG* pMsg);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. // view for the client area of the frame.
  35. CMyPage1 m_wndPage1;
  36. CMyPage2 m_wndPage2;
  37. CMyPage3 m_wndPage3;
  38. CExtChildResizablePropertySheet m_wndView;
  39. virtual ~CChildFrame();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. // Generated message map functions
  45. protected:
  46. //{{AFX_MSG(CChildFrame)
  47. afx_msg void OnFileClose();
  48. afx_msg void OnSetFocus(CWnd* pOldWnd);
  49. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_CHILDFRM_H__B6B0AE2D_15EA_42DF_BE9F_A0F677C63844__INCLUDED_)