博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VC/MFC 使edit控件不能进行粘贴操作
阅读量:6240 次
发布时间:2019-06-22

本文共 488 字,大约阅读时间需要 1 分钟。

[cpp] 
 
  1. 这里使用消息拦截的方法  
[cpp] 
 
  1. BOOL PersonDlg::PreTranslateMessage(MSG* pMsg)  
  2. {  
  3.     if (GetDlgItem(IDC_EDIT_USER_ID)->m_hWnd == pMsg->hwnd ||  
  4.         GetDlgItem(IDC_EDIT_USER_NAME)->m_hWnd == pMsg->hwnd ||  
  5.         GetDlgItem(IDC_EDIT_PHONE)->m_hWnd == pMsg->hwnd ||  
  6.         GetDlgItem(IDC_EDIT_IDCARD)->m_hWnd == pMsg->hwnd )     
  7.     {     
  8.         if (pMsg->message == WM_RBUTTONUP || pMsg->message == WM_KEYDOWN && pMsg->wParam == 'V' && (GetAsyncKeyState(VK_CONTROL) & 0x8000))              
  9.             return TRUE;          
  10.     }  
  11.     return CRTDialog::PreTranslateMessage( pMsg );  
  12. }  

转载地址:http://wddia.baihongyu.com/

你可能感兴趣的文章
day01-Python介绍,安装,idea
查看>>
AX函数,将EXCEL列号转为列名
查看>>
UNDO -- Concept
查看>>
养生《一》
查看>>
es6的模块化--AMD/CMD/commonJS/ES6
查看>>
DevStack部署Openstack环境
查看>>
新年最新的100句超牛的语言(转)
查看>>
Chromium Graphics: Graphics and Skia
查看>>
asp.net core mvc上传大文件解决方案
查看>>
二叉树
查看>>
十分简单的抛物线运动
查看>>
乘法逆元(转)
查看>>
android repo库的创建及代码管理
查看>>
tomcat 配置
查看>>
Cloudera Certified Associate Administrator案例之Configure篇
查看>>
QTP完全卸载
查看>>
【跨域】#001 JSONP原理解析【总结】
查看>>
Linux下mysql的安装和配置
查看>>
Scrum 项目 4.0-5.0-约教网站开发(一)
查看>>
CSS3变形transform 2D初级了解
查看>>