码迷,mamicode.com
首页 > 其他好文 > 详细

VC/MFC 使edit控件不能进行粘贴操作

时间:2014-05-01 07:05:59      阅读:585      评论:0      收藏:0      [点我收藏+]

标签:http   blog   class   div   c   log   t   sp   tar   strong   string   

[cpp] view plaincopy
 
  1. 这里使用消息拦截的方法  
[cpp] view plaincopy
 
  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. }  

VC/MFC 使edit控件不能进行粘贴操作,布布扣,bubuko.com

VC/MFC 使edit控件不能进行粘贴操作

标签:http   blog   class   div   c   log   t   sp   tar   strong   string   

原文地址:http://www.cnblogs.com/lidabo/p/3701784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!