QuakeGod
2023-10-20 6fa60de2b0d0237054aa7571191df0f291838031
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once
#include <afxdockablepane.h>
#include "MyFormInputShow.h"
class CMyPaneInputShow :    public CDockablePane
{
    DECLARE_DYNAMIC(CMyPaneInputShow)
public:
    CMyPaneInputShow();
    virtual ~CMyPaneInputShow();
    CMyFormInputShow* m_pMyFormInputShow;
protected:
 
    //    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();
};