MFC CEdit失去焦点处理程序

时间:2012-07-06 00:44:34

标签: c++ mfc cedit

我正在使用文档/视图架构创建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。

谢谢,

1 个答案:

答案 0 :(得分:3)

您必须在父窗口中处理EN_KILLFOCUS通知代码。你不应该从CEdit派生出来。

EN_KILLFOCUS notification code

<强>更新

  

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

     

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

     

lParam: - 处理编辑控件。