|
发表于 2015-10-13 18:08:43
|
显示全部楼层
本帖最后由 19900603 于 2015-10-13 18:09 编辑
双击触发DblClick事件。。
Const GCL_STYLE = (-26)
Const CS_DBLCLKS = &H8
Dim CsStyle As Long
CsStyle = GetClassLong(WinHwnd, GCL_STYLE)
Call SetClassLong(WinHwnd, GCL_STYLE, CsStyle And Not CS_DBLCLKS)
取消掉双击事件就好了。。 |
|