我正在尝试在函数中捕获CEdit EM_SHOWBALLOONTIP消息。PreTranslateMessage有人可以告诉我该怎么做吗?谢谢你
BOOL CTestDlg::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->hwnd == m_edit1.GetSafeHwnd())
{
if (pMsg->message == EM_HIDEBALLOONTIP)
{
}
}
return CDialogEx::PreTranslateMessage(pMsg);
}