判断当前键是否为H
这个哪错了?? 运行后按键但没反应--
被这个搞死了
BOOL CAboutDlg::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message == WM_KEYUP)
{
AfxMessageBox( "You urn ");
if(pMsg-> wParam == VK_TAB)
AfxMessageBox( "You press the return ");
switch(pMsg->wParam)
{
case 0x4E: //表示是方向键中的向下的键
AfxMessageBox( "You press the return ");
break;
}
}
return CDialog::PreTranslateMessage(pMsg);
}
被这个搞死了
BOOL CAboutDlg::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message == WM_KEYUP)
{
AfxMessageBox( "You urn ");
if(pMsg-> wParam == VK_TAB)
AfxMessageBox( "You press the return ");
switch(pMsg->wParam)
{
case 0x4E: //表示是方向键中的向下的键
AfxMessageBox( "You press the return ");
break;
}
}
return CDialog::PreTranslateMessage(pMsg);
}
作者: MFC_FK 发布时间: 2011-06-13
是不是不符合pMsg->message == WM_KEYUP的条件,下面的代码没被执行了
作者: chenzekai123 发布时间: 2011-06-14