首页 > 其他 > 详细

OnCommand()

时间:2016-10-13 13:51:23      阅读:193      评论:0      收藏:0      [点我收藏+]
BOOL CXXX::OnCommand(WPARAM wParam, LPARAM lParam)
{
  if (HIWORD(wParam) == BN_CLICKED)  //判断是否是单击消息
  { switch (wParam) { case 1: break; case 2: break; case 3: break; case 4: break; case 5: break; }
  }     return TRUE; }

CWnd::OnCommand

This method is called by the framework when the user selects an item from a menu, when a child control sends a notification message, or when an accelerator keystroke is translated.

virtual BOOL OnCommand( 
WPARAM wParam, 
LPARAM lParam );

Parameters

wParam
The low-order word of wParam identifies the command ID of the menu item, control, or accelerator. The high-order word of wParam specifies the notification message if the message is from a control. If the message is from an accelerator, the high-order word is 1. If the message is from a menu, the high-order word is 0.
lParam
Identifies the control that sends the message if the message is from a control. Otherwise, lParam is 0.

Return Value

An application returns nonzero if it processes this message; otherwise, it is zero.

 

OnCommand()

原文:http://www.cnblogs.com/wuguoqiang/p/5955922.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!