MFC的CEdit失去焦点处理程序(MFC CEdit lose focus handler)

2019-10-16 23:16发布

我创建使用文档/视图结构的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是不是在所有调用。

谢谢,

Answer 1:

你必须处理EN_KILLFOCUS在父窗口通知代码。 你不应该从CEdit的派生来做到这一点。

EN_KILLFOCUS通知码

更新:

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

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

lParam的: -处理编辑控件。



文章来源: MFC CEdit lose focus handler
标签: c++ mfc cedit