QuakeGod
2024-01-16 6ff05a44b01c6ac6e33db2ec28dcf6e2a7c2abb0
提交 | 用户 | age
418cb3 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