QuakeGod
2024-12-24 61deef5cdf96cbfdd6ad45be49e80d597c00ca65
提交 | 用户 | age
61deef 1 
Q 2 // MainFrm.h: CMainFrame 类的接口
3 //
4
5 #pragma once
6
7 class CMainFrame : public CMDIFrameWndEx
8 {
9     DECLARE_DYNAMIC(CMainFrame)
10 public:
11     CMainFrame() noexcept;
12
13 // 特性
14 public:
15
16 // 操作
17 public:
18
19 // 重写
20 public:
21     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
22
23 // 实现
24 public:
25     virtual ~CMainFrame();
26 #ifdef _DEBUG
27     virtual void AssertValid() const;
28     virtual void Dump(CDumpContext& dc) const;
29 #endif
30
31 protected:  // 控件条嵌入成员
32     CToolBar          m_wndToolBar;
33     CStatusBar        m_wndStatusBar;
34
35 // 生成的消息映射函数
36 protected:
37     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
38     DECLARE_MESSAGE_MAP()
39
40 };
41
42