如何响应CListCtrl控件的KEYDOWN和KEYUP事件
1个回答
展开全部
在你的对话框中做如下处理,或者在你的CListCtrl中也行
BOOL CYourDialog::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message == WM_KEYDOWN)
return TRUE;
return CDialog::PreTranslateMessage(pMsg);
}
BOOL CYourDialog::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message == WM_KEYDOWN)
return TRUE;
return CDialog::PreTranslateMessage(pMsg);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询