QuakeGod
2021-06-20 4b03ae5cf77da35e8cf7a7c4b508bba09307cc3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 
// ChildFrm.h: CChildFrame 类的接口
//
 
#pragma once
 
class CChildFrame : public CMDIChildWnd
{
    DECLARE_DYNCREATE(CChildFrame)
public:
    CChildFrame() noexcept;
 
// 特性
protected:
    CSplitterWnd m_wndSplitter;
    CStatusBar  m_wndStatusBar;
public:
    CStatusBar *GetStatusBar()
    {
        return &m_wndStatusBar;
    }
// 操作
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 int OnCreate(LPCREATESTRUCT lpCreateStruct);
};