您的位置:首页 > 其它

屏蔽VC对话框中点击FLASH弹出的右键菜单

2012-11-17 14:41 288 查看
重载PreTranslateMessage 处理消息,并返回TRUE即可

BOOL CDialog::PreTranslateMessage(MSG* pMsg)

{

// TODO: Add your specialized code here and/or call the base class

if((WM_RBUTTONDOWN == pMsg->message) || (WM_RBUTTONDBLCLK == pMsg->message))

{

return TRUE;

}

return CDialog::PreTranslateMessage(pMsg);

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐