问题现象:
在DockablePane中嵌入CFormView,运行程序,点击浮动窗口上的CFormView区域,程序会弹出异常
解决方法:
在CFormView的子类中,添加修改OnMouseActivate消息响应,注意将CFormView::改成CWnd::
int CTestView::OnMouseActivate(CWnd* pDesktopWnd, UINT nHitTest, UINT message)
{
// TODO: 在此添加消息处理程序代码和/或调用默认值
//return CFormView::OnMouseActivate(pDesktopWnd, nHitTest, message);
return CWnd::OnMouseActivate(pDesktopWnd, nHitTest, message);
}