You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
438 B
C++
21 lines
438 B
C++
#pragma once
|
|
#include "DlgPane.h"
|
|
//可停靠对话框模板
|
|
class CPaneDialogTmp : public CDockablePane
|
|
{
|
|
DECLARE_DYNAMIC(CPaneDialogTmp)
|
|
|
|
public:
|
|
CPaneDialogTmp();
|
|
virtual ~CPaneDialogTmp();
|
|
void SetDlg(CDlgPane *p){m_Dlg = p;};
|
|
private:
|
|
CDlgPane *m_Dlg;
|
|
protected:
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
|