1

我正在使用文档/视图架构创建一个 MFC 程序。在视图中,我调用了一个扩展 CEdit 的单元类来绘制一个文本框。但是,当我尝试为该文本框捕捉失去焦点的消息时,它没有任何反应。我试图覆盖 PreTranslateMessage 但这没有用。

这是 CGridView.cpp 类中的代码:

void CGridView::OnInsertText()
{
    CWnd* pParentWnd = this;
    CellText* pEdit = new CellText(&grid, pParentWnd);

    Invalidate();   
    UpdateWindow();
}

CellText.cpp:

CellText::CellText(Grid *pgrid, CWnd* pParentWnd)
{

    int *pcoordinates = pgrid->GetSelectedCellCoodrinates();
    cedit.Create(ES_MULTILINE | WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_BORDER, CRect(*pcoordinates+10, *(pcoordinates+1)+10, *(pcoordinates+2)-10, *(pcoordinates+3)-10), pParentWnd, 1);

    cell = pgrid->GetSelectedCell();
    pgrid->SetCellType(cell, "text");

    grid = pgrid;
}


BEGIN_MESSAGE_MAP(CellText, CEdit)
    ON_WM_KILLFOCUS()
    ON_WM_KEYDOWN()
END_MESSAGE_MAP()



// CellText message handlers

void CellText::OnKillFocus(CWnd* pNewWnd)
{
    CEdit::OnKillFocus(pNewWnd);

    CString str;
    GetWindowTextW(str);
    grid->SetCellText(cell, str);

    cedit.DestroyWindow(); 
}

BOOL CellText::PreTranslateMessage(MSG* pMsg) 
{
    if(pMsg->message==WM_KEYDOWN)
    {
        if(pMsg->wParam==VK_UP)
        {

        }
    }   

    return CWnd::PreTranslateMessage(pMsg);
}

当我调试时,根本不会调用 onkillfocus 和 pretranslatemessage。

谢谢,

4

1 回答 1

4

您必须EN_KILLFOCUS在父窗口中处理通知代码。您不必从 CEdit 派生来执行此操作。

EN_KILLFOCUS 通知代码

更新:

编辑控件的父窗口通过 WM_COMMAND 消息接收此通知代码。

wParam: LOWORD 包含编辑控件的标识符。HIWORD 指定通知代码。

lParam: - 编辑控件的句柄。

于 2012-07-06T02:14:54.377 回答