zxd
2023-09-28 aac3b319965967f465881f3a8961904d57b6f337
提交 | 用户 | 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