How to send a notification that#39;s handled by ON_NOTIFY?(如何发送由 ON_NOTIFY 处理的通知?)
问题描述
我正在尝试向我的自定义网格列表的所有者发布一个 LVN_ITEMCHANGED.我知道如何使用 PostMessage 发送 WM_ 用户消息(如图所示)
I'm trying to post a LVN_ ITEMCHANGED to my custom gridlist's owner. I know how to send a WM_ User message using PostMessage (as shown here)
::PostMessage( AfxGetMainWnd()->GetSafeHwnd(), WM_REFRESH, (WPARAM)pBuffer, (LPARAM)GetOutputIdx() );
当我使用相同的代码发送 LVN_ITEMCHANGED 消息时,
When I use this same code to send a LVN_ITEMCHANGED message though,
::PostMessage( AfxGetMainWnd()->GetSafeHwnd(), LVN_ITEMCHANGED, 0, 0);
好像没被抓到
ON_NOTIFY(LVN_ITEMCHANGED, ..., ...)
我在所有者类中.
使用 ::PostMessage 发送 Notify 事件是不是我错了?
Notify 消息和 WM_ 前缀消息之间有区别吗?或者它们的处理方式有区别吗?
有人可以发布我如何正确发送消息的示例吗?
Am I wrong to be using ::PostMessage to send a Notify event?
Is there a difference between Notify messages and WM_ prefix messages or how they're handled?
Can someone post a sample of how I would send the message properly?
提前致谢.
编辑
我找到了解决问题的另一种方法.请参阅下面的答案.
Edit
I found another solution to the problem. See my answer below.
推荐答案
我发现我可以重写派生类中的消息处理程序并将消息传递给我的父控件,只需在消息映射中使用以下代码:
I found out that I could override the message handler in my derived class and pass the message on to my parent control simply by using this code in the message map:
ON_NOTIFY_REFLECT_EX(LVN_ITEMCHANGED, OnListItemChanged)
然后在 OnListItemChanged 中,我先调用基类函数然后返回 FALSE.这使得消息可以毫不费力地反映到父类.
Then in OnListItemChanged, I first call the base class function then return FALSE. This causes the message to be reflected to the parent class effortlessly.
这篇关于如何发送由 ON_NOTIFY 处理的通知?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何发送由 ON_NOTIFY 处理的通知?
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01