123456789101112131415161718192021222324252627282930313233343536373839 |
- #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);
- };
|