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
| #pragma once
| //#include "MyFormLog.h"
| #include "MyDialogLog.h"
|
| // CMyPaneLog
|
| class CMyPaneLog : public CDockablePane
| {
| DECLARE_DYNAMIC(CMyPaneLog)
|
| public:
| CMyPaneLog();
| virtual ~CMyPaneLog();
|
| protected:
| // CMyFormLog * m_pMyFormLog;
| CMyDialogLog m_MyDialogLog;
| // CEdit MyLogEdit1;
| DECLARE_MESSAGE_MAP()
| public:
| afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
| afx_msg void OnSize(UINT nType, int cx, int cy);
| afx_msg void OnDestroy();
| };
|
|
|
|