VC++处理鼠标拖拽中鼠标随意点击引起的误操作

在鼠标拖拽时,经常会出现由于随意点击而引起的误操作。需要对这种误操作进行“去抖动”操作。考虑读取鼠标左键松开消息。进行对比。如果有左键松开消息,认为误操作。采取以下方式处理。

//确信要拖动,而不是随便点击
 //按下左键250ms则认为要拖动
 Sleep(250);
 MSG msg;
 ::PeekMessage(
  &msg,
  GetSafeHwnd(),
  WM_LBUTTONUP,
  WM_LBUTTONUP,
  PM_NOREMOVE
  );
 //随意点击而已,返回
 if( msg.message==WM_LBUTTONUP )
  return;

The PeekMessage function dispatches incoming sent messages, checks the thread message queue for a posted message, and retrieves the message (if any exist). BOOL PeekMessage(
  LPMSG lpMsg,         // message information
  HWND hWnd,           // handle to window
  UINT wMsgFilterMin,  // first message
  UINT wMsgFilterMax,  // last message
  UINT wRemoveMsg      // removal options
);
CWnd::GetSafeHwnd
This method obtains the window handle for a window. It returns NULL if the CWnd is not attached to a window or if it is used with a null CWnd pointer.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值