WM_POWERBROADCAST message not caught in MFC Dlg(WM_POWERBROADCAST 消息未在 MFC Dlg 中捕获)
问题描述
当系统进入睡眠模式时,我尝试捕捉 WM_POWERBROADCAST 消息.
I try to catch WM_POWERBROADCAST message when the system goes into sleep mode.
我正在这样做:
BOOL CPowManApp::PreTranslateMessage(MSG* pMsg)
{
if(pMsg->message == WM_POWERBROADCAST || pMsg->message == WM_POWER)
{
CString strMessage;
strMessage.Format(_T("%d WM_POWERB%s wParam %x lParam %x"),
pMsg->time,
pMsg->message == WM_POWER?_T(""):_T("BRAODCAST"),
pMsg->wParam,
pMsg->lParam);
OutputDebugString(strMessage);
}
return CWinApp::PreTranslateMessage(pMsg);
}
它根本不起作用.同时,一个 win32 应用程序工作得很好.我试图将消息处理程序放在 Dlg 类中是徒劳的.
It simply doesn't work. Meanwhile a win32 app works just fine. I tried to put the message handler in the Dlg class in vain.
我正在使用 VS6.0 构建应用程序.我哪里错了?
I'm building the app with VS6.0. Where am I wrong?
推荐答案
在你的消息映射中
ON_MESSAGE( WM_POWERBROADCAST, OnPowerBroadcast )
实施
LRESULT CDialogDlg::OnPowerBroadcast(WPARAM wParam, LPARAM lParam)
{
switch (wParam)
{
case PBT_...
}
}
请务必查看 MSDNwParam 值周围的一些特定于操作系统的情况.
Be sure to check MSDN for some OS-specific cases around the wParam values.
这篇关于WM_POWERBROADCAST 消息未在 MFC Dlg 中捕获的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:WM_POWERBROADCAST 消息未在 MFC Dlg 中捕获
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01