mfc对话框的OnKeyDown消息怎么不起作用
我在OnKeyDown里加了如下代码:if(nChar==110){MessageBox("你按了n键");}编译是通过了,但是按n没反应。...
我在OnKeyDown里加了如下代码:if (nChar==110){ MessageBox("你按了n键");}编译是通过了,但是按n没反应。
展开
1个回答
2013-07-10
展开全部
你试一下重载对话框类的PreTranslateMessage函数,并把函数改成如下:BOOL CTest1Dlg::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message==WM_KEYDOWN)
{
if(pMsg->wParam==110)
{
MessageBox("你按了n键"); }
return CDialog::PreTranslateMessage(pMsg);
}
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message==WM_KEYDOWN)
{
if(pMsg->wParam==110)
{
MessageBox("你按了n键"); }
return CDialog::PreTranslateMessage(pMsg);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询