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.

14 lines
319 B
C++

#pragma once
//用来放在pane 里面的对话框,特点是可以获得对话框的ID
class CDlgPane: public CDialogEx
{
DECLARE_DYNAMIC(CDlgPane)
public:
CDlgPane(CWnd* pParent = NULL); // 标准构造函数
virtual ~CDlgPane();
virtual UINT GetIDD(){return 0;};
afx_msg BOOL PreTranslateMessage(MSG* pMsg);
};