1

我在(父)中有CMDIChildWnd一个(子)。也有发送到它的子视图的工具栏。到目前为止有效。现在,只要激活(例如单击它),消息就会到达,而不是父。CReportViewCFormViewCMDIChildWndON_UPDATE_COMMAND_UICReportViewON_UPDATE_COMMAND_UICReportViewCFormView

我现在要做的是ON_UPDATE_COMMAND_UI在子视图中捕获消息并以某种方式将它们中继到父视图。我尝试覆盖该CWnd::PreTranslateMessage()方法并调用父视图的SendMessage()方法,但ON_UPDATE_COMMAND_UI没有到达那里。

我还尝试了以下

BEGIN_MESSAGE_MAP(CUntisSimpleGrid, CReportView)
    ON_MESSAGE(WM_IDLEUPDATECMDUI, OnIdleUpdate)
END_MESSAGE_MAP()

LRESULT CUntisSimpleGrid::OnIdleUpdate(WPARAM wParam, LPARAM lParam)
{
    CWnd *pParentView = GetParent();
    UpdateDialogControls(pParentView, FALSE);
    return 0L;
}

但这也没有用。有人有想法吗?

4

1 回答 1

1

我已经通过覆盖OnCmdMsg. CMDIChildWnd现在,在尝试以通常的方式发送消息之后,CMDIChildWnd还尝试将消息发送到其非活动视图并在其中一个处理消息后停止。

BOOL CShowLessonsChildFrame::OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo)
{
    CPushRoutingFrame push(this);

    // pump through current view FIRST
    CView* pView = GetActiveView();
    if (pView != NULL && pView->OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
        return TRUE;

    // then pump through frame
    if (CWnd::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
        return TRUE;

    // last but not least, pump through app
    CWinApp* pApp = AfxGetApp();
    if (pApp != NULL && pApp->OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
        return TRUE;

    // Now try to dispatch the message to inactive windows and see if
    // one of them handles the message
    for(UINT id = AFX_IDW_PANE_FIRST; id <= AFX_IDW_PANE_LAST; id++)
    {
        CWnd *pWnd = GetDescendantWindow(id, TRUE);
        if(pWnd && pWnd != GetActiveView()
            && pWnd->OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
        return TRUE;
    }

    return FALSE;
}
于 2013-01-11T07:48:23.387 回答