原创 vc++ 按键消息

2011-9-13 10:59 1235 9 9 分类: 软件与OS

BOOL CPC104Dlg::PreTranslateMessage(MSG* pMsg)
{
 // TODO: Add your specialized code here and/or call the base class
 if(pMsg-> message   ==   WM_KEYUP)         
  {
  //按键值放在pMsg-> wParam中,以下以检测用户是否按下enter键为例
  //把光标移到下面一行的 "VK_RETURN "处. 
  if(pMsg-> wParam==VK_RETURN)
  {

     //加载相应程序
  }
 }

 return CDialog::PreTranslateMessage(pMsg);
}

文章评论0条评论)

登录后参与讨论
我要评论
0
9
关闭 站长推荐上一条 /2 下一条