gpt4 book ai didi

c++ - MFC CEdit 失去焦点处理程序

转载 作者:行者123 更新时间:2023-11-30 02:03:50 26 4
gpt4 key购买 nike

我正在使用文档/ View 架构创建 MFC 程序。在 View 中,我调用了一个扩展 CEdit 的单元格类来绘制一个文本框。这很好用,但是,当我 try catch 该文本框的失去焦点消息时,什么也没有发生。我试图覆盖 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。

谢谢,

最佳答案

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

EN_KILLFOCUS notification code

更新:

The parent window of the edit control receives this notification code through a WM_COMMAND message.

wParam: The LOWORD contains the identifier of the edit control. The HIWORD specifies the notification code.

lParam: - Handle to the edit control.

关于c++ - MFC CEdit 失去焦点处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11354475/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com