ChildFrm.h 606 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // ChildFrm.h : CChildFrame 类的接口
  2. //
  3. #pragma once
  4. class CChildFrame : public CMDIChildWnd
  5. {
  6. DECLARE_DYNCREATE(CChildFrame)
  7. public:
  8. CChildFrame();
  9. // 属性
  10. public:
  11. bool m_bClose;
  12. CString m_strPath;
  13. CString m_strDesc;
  14. // 操作
  15. public:
  16. // 重写
  17. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  18. // 实现
  19. public:
  20. virtual ~CChildFrame();
  21. #ifdef _DEBUG
  22. virtual void AssertValid() const;
  23. virtual void Dump(CDumpContext& dc) const;
  24. #endif
  25. // 生成的消息映射函数
  26. protected:
  27. DECLARE_MESSAGE_MAP()
  28. public:
  29. afx_msg void OnClose();
  30. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  31. };