QuakeGod
2023-09-12 78e91efc666606328e3fc63fbd54eb2da4442799
提交 | 用户 | age
df0321 1 #pragma once
Q 2 #include <afxdockablepane.h>
3 #include "MyFormInputShow.h"
4 class CMyPaneInputShow :    public CDockablePane
5 {
6     DECLARE_DYNAMIC(CMyPaneInputShow)
7 public:
8     CMyPaneInputShow();
9     virtual ~CMyPaneInputShow();
10     CMyFormInputShow* m_pMyFormInputShow;
11 protected:
12
13     //    CMyDialogLog m_MyDialogLog;
14         //    CEdit  MyLogEdit1;
15     DECLARE_MESSAGE_MAP()
16 public:
17     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
18     afx_msg void OnSize(UINT nType, int cx, int cy);
19     afx_msg void OnDestroy();
20 };
21