博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BEGIN_MESSAGE_MAP
阅读量:5323 次
发布时间:2019-06-14

本文共 735 字,大约阅读时间需要 2 分钟。

http://msdn.microsoft.com/zh-cn/library/9x1t4dy1%28v=vs.100%29

http://msdn.microsoft.com/zh-cn/library/0x0cx6b1%28v=vs.100%29

 

Begins the definition of your message map.

 

BEGIN_MESSAGE_MAP(theClass, baseClass )
theClass

Specifies the name of the class whose message map this is.

baseClass

Specifies the name of the base class of theClass.

 

In the implementation (.cpp) file that defines the member functions for your class, start the message map with the BEGIN_MESSAGE_MAP macro, then add macro entries for each of your message-handler functions, and complete the message map with the END_MESSAGE_MAP macro.

 

BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)   ON_WM_CREATE()END_MESSAGE_MAP()

转载于:https://www.cnblogs.com/centerall/p/3438587.html

你可能感兴趣的文章
个人项目——买书
查看>>
POJ 2309 BST
查看>>
Codefroces 415B Mashmokh and Tokens
查看>>
HDU 3440 House Man
查看>>
Mysql 用户管理
查看>>
实验五
查看>>
焊接贴片
查看>>
C/C++掌握技能(一)
查看>>
数据库事务与锁详解
查看>>
实验3
查看>>
oracle导入大批量数据(20G)
查看>>
洛谷 P1508 Likecloud-吃、吃、吃
查看>>
Tile的更新
查看>>
在同一个页面设置两个选项卡菜单 滑动式导航
查看>>
Mybatis: 无效的列类型:1111错误
查看>>
DataGridView隔行显示不同的颜色
查看>>
封装数据库配置文件App配置文件
查看>>
python 执行shell命令
查看>>
Mybatis的mapper文件中$和#的区别
查看>>
Find the total area covered by two rectilinear rectangles in a 2D plane. 208MM
查看>>