原创 【高兴】FormView 视图 无法响应Ctrl+C等键盘消息解决办法 仅4行代码

2011-12-31 10:46 1882 22 22 分类: MCU/ 嵌入式

FormView 视图 无法响应Ctrl+C等键盘消息解决办法 仅4行代码

困扰了我好久的问题终于解决了,兴奋

BOOL CShowCardInfoView::PreTranslateMessage(MSG* pMsg)
{
 // TODO: Add your specialized code here and/or call the base class
 if( IsDialogMessage( pMsg ) )
  return TRUE;
 else
  return CWnd::PreTranslateMessage( pMsg );
}

文章评论0条评论)

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