找回密码
 加入
搜索
查看: 1374|回复: 1

[AU3基础] 请教消息拦截函数传入参数的问题

[复制链接]
发表于 2013-9-2 10:18:49 | 显示全部楼层 |阅读模式
本帖最后由 kxing 于 2013-9-2 10:24 编辑

请问各位大大,像这种消息拦截函数有没办法传入第三个参数呢的
每次要传入控件句柄都得声明为全局变量,这样实在不方便。
感谢高手们回答....
#include <GUIConstantsEx.au3>
#include <StructureConstants.au3>
#include <WindowsConstants.au3>

guicreate("test",200,200)
$hListview=guictrlcreatelistview("listview",0,0,200,200)
guisetstate()
guiregistermsg($WM_NOTIFY,"WM_NOTIFY")

for $i=0 to 10
guictrlcreatelistviewitem("列表项目:"&$i,$hListview)
next


do

until guigetmsg()=-3


func WM_NOTIFY($hWndGUI, $MsgID, $WParam, $LParam)
Local $tagNMHDR, $Event, $hWndFrom, $IDFrom
Local $tagNMHDR = DllStructCreate("int;int;int", $LParam)
If @error Then Return $GUI_RUNDEFMSG
$IDFrom = DllStructGetData($tagNMHDR, 2)
$Event = DllStructGetData($tagNMHDR, 3)
$tagNMHDR = 0
if $IDFrom=$hListview then
if $Event=$NM_CLICK then msgbox(0,'click',guictrlread(guictrlread($hListview)))
endif
Return $GUI_RUNDEFMSG
endfunc   ;==>WM_NOTIFY
 楼主| 发表于 2013-9-3 18:52:01 | 显示全部楼层
有高人帮助下吗,谢谢了...
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2024-11-16 13:36 , Processed in 0.087370 second(s), 23 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表