我有一个情况。有一个巨大的应用程序(C++ MFC)。我编写了一个带有可停靠窗格的 .dll 模块。
窗格界面结构:
Pane -> CMFCToolBar -> CSplitterWndEx -> CListCtrl -> CDialogEx
这就是我创建 DialogEx 的方式:
int CMyPane::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
///////////////////////////////////////////
////////// TAB CTRL ///////////////////////
///////////////////////////////////////////
const int dwResTabCtrlStyle = WS_CHILD | WS_VISIBLE | TCS_VERTICAL;// | LVS_SINGLESEL;
if(!m_SptitterWndEx.AddTabCtrl(0, 1, &m_tabCtrl, CMFCTabCtrl::STYLE_3D, CMFCBaseTabCtrl::LOCATION_TOP, CSize(10,10)))
return -1;
{
AFX_MANAGE_STATE(AfxGetStaticModuleState());
m_DialogEx.Create(CAccuracyResultPage::IDD, NULL);
}
m_DialogEx.SetParent(&m_tabCtrl);
if(!m_DialogEx.GetParent())
return -1;
str.LoadString( AfxGetStaticModuleState()->m_hCurrentResourceHandle, IDS_RESULT_TAB);
m_tabCtrl.AddTab(&m_DialogEx, str, 0);
AdjustLayout();
return 0;
}
我在 CDialogEx::PreTranslateMessage 上得到断言。原因是当它得到它的父母
_AFXWIN_INLINE CWnd* CWnd::GetParent() const
{ ASSERT(::IsWindow(m_hWnd)); return CWnd::FromHandle(::GetParent(m_hWnd)); }
m_hWnd 不是 Wnd。但是 CDialog 看起来完全没问题,它有 m_pParentWnd,但不是 m_tabCtrl。
所以我的问题是:为什么 CDialogEx 不设置它的父级?!以及如何处理?!