WM_COMMAND WM_NOTIFY 自定义通知代码

2022-01-12 00:00:00 winapi mfc

我希望定义一个新的通知 id,它将在我的子类控件的 WM_COMMAND 消息中使用.但是我没有找到任何创建用户控件定义的通知代码的规则.

解决方案

请参阅技术说明 20、21 和 22:

  • TN020:ID 命名和编号约定p>

  • TN021:命令和消息路由

  • TN022:标准命令实现

简答:在 0x8000 - 0xDFFF 范围内选择一个数字.

I wish to define a new nofication id that will be used in WM_COMMAND messages of my subclassed control. But I failed to find any rules of creating user control-defined notification codes.

解决方案

See technical note 20, 21 and 22 on that:

  • TN020: ID Naming and Numbering Conventions

  • TN021: Command and Message Routing

  • TN022: Standard Commands Implementation

Short answer: pick a number in the range 0x8000 - 0xDFFF .

相关文章