123456789101112131415161718192021222324252627282930313233343536373839 |
- // ChildFrm.h : CChildFrame 类的接口
- //
- #pragma once
- class CChildFrame : public CMDIChildWnd
- {
- DECLARE_DYNCREATE(CChildFrame)
- public:
- CChildFrame();
- // 属性
- public:
- bool m_bClose;
- CString m_strPath;
- CString m_strDesc;
- // 操作
- public:
- // 重写
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- // 实现
- public:
- virtual ~CChildFrame();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- // 生成的消息映射函数
- protected:
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnClose();
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- };
|