线程,为什么消息发送不成功
1个回答
展开全部
有两种可能
1. 你主线程如果不是MFC的(即自己怎么写的), 可能基本没有机会处理这个消息, 因为PostThreadMessage是立即返回
2. 关于宏ON_THREAD_MESSAGE MSDN里面有介绍
memberFxn
The name of the CWinThread-message-handler function to which the message is mapped.
不知道你这个函数是不是在CWinThread派生类写的
我在MFC的对话框中添加一个按钮, 处理按钮的单击事件如下
if (PostThreadMessage(GetCurrentThreadId(), WM_QUIT,0,0) == FALSE)
{
AfxMessageBox(_T("失败"));
return;
}
点击按钮之后, 程序会自动退出, 说明主线程有收到WM_QUIT消息
补充回答:
具体的我也不太清楚, 不过MSDN里面有说(关于PostThreadMessage)
Messages sent by PostThreadMessage are not associated with a window. As a general rule, messages that are not associated with a window cannot be dispatched by the DispatchMessage function.
因此我猜测可能是DispatchMessage 没有办法转发, 如果是跟窗口关联的可以通过ID获取HWND, 再使用PostMessage发送消息
所以我在PreTranslateMessage捕捉, 发现可以捕捉到消息
具体示例:
1. 在点击事件中
if (PostThreadMessage(GetCurrentThreadId(), 0x0401,0,0) == FALSE)
{
AfxMessageBox(_T("失败"));
return;
}
2. 在虚函数PreTranslateMessage中
添加(在return CDialog::PreTranslateMessage(pMsg);前面添加)
if (pMsg->message == 0x0401)
{
AfxMessageBox(_T("收到消息 "));
}
1. 你主线程如果不是MFC的(即自己怎么写的), 可能基本没有机会处理这个消息, 因为PostThreadMessage是立即返回
2. 关于宏ON_THREAD_MESSAGE MSDN里面有介绍
memberFxn
The name of the CWinThread-message-handler function to which the message is mapped.
不知道你这个函数是不是在CWinThread派生类写的
我在MFC的对话框中添加一个按钮, 处理按钮的单击事件如下
if (PostThreadMessage(GetCurrentThreadId(), WM_QUIT,0,0) == FALSE)
{
AfxMessageBox(_T("失败"));
return;
}
点击按钮之后, 程序会自动退出, 说明主线程有收到WM_QUIT消息
补充回答:
具体的我也不太清楚, 不过MSDN里面有说(关于PostThreadMessage)
Messages sent by PostThreadMessage are not associated with a window. As a general rule, messages that are not associated with a window cannot be dispatched by the DispatchMessage function.
因此我猜测可能是DispatchMessage 没有办法转发, 如果是跟窗口关联的可以通过ID获取HWND, 再使用PostMessage发送消息
所以我在PreTranslateMessage捕捉, 发现可以捕捉到消息
具体示例:
1. 在点击事件中
if (PostThreadMessage(GetCurrentThreadId(), 0x0401,0,0) == FALSE)
{
AfxMessageBox(_T("失败"));
return;
}
2. 在虚函数PreTranslateMessage中
添加(在return CDialog::PreTranslateMessage(pMsg);前面添加)
if (pMsg->message == 0x0401)
{
AfxMessageBox(_T("收到消息 "));
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询