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

#pragma once
#include "DlgPane.h"
//<2F><>ͣ<EFBFBD><CDA3><EFBFBD>Ի<EFBFBD><D4BB><EFBFBD>ģ<EFBFBD><C4A3>
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()
};