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条评论)
登录后参与讨论