QuakeGod
2022-07-22 dd67df95a7303aee3bed65ffa935465f20ee8b32
提交 | 用户 | age
0ed438 1 #pragma once
Q 2 //#include "MyFormLog.h"
3 #include "MyDialogLog.h"
4
5 // CMyPaneLog
6
7 class CMyPaneLog : public CDockablePane
8 {
9     DECLARE_DYNAMIC(CMyPaneLog)
10
11 public:
12     CMyPaneLog();
13     virtual ~CMyPaneLog();
14
15 protected:
16 //    CMyFormLog * m_pMyFormLog;
17     CMyDialogLog m_MyDialogLog;
18     //    CEdit  MyLogEdit1;
19     DECLARE_MESSAGE_MAP()
20 public:
21     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
22     afx_msg void OnSize(UINT nType, int cx, int cy);
23     afx_msg void OnDestroy();
24 };
25
26