不知道楼主是想要这样的吗?#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>
Opt('MustDeclareVars', 1)
$Debug_LV = False ; Check ClassName being passed to ListView functions, set to True and use a handle to another control to see it work
_Main()
Func _Main()
Local $hListView
GUICreate("ListView Set Item Param", 400, 300)
$hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
GUISetState()
_GUICtrlListView_AddColumn($hListView, "Items", 100)
; Add items
For $i = 0 To 99
_GUICtrlListView_AddItem($hListView, "********")
Next
For $i = 0 To 99
_GUICtrlListView_SetItemParam($hListView, $i, Random(0, 10000, 1))
Next
MsgBox(4160, "Information", "Item random Parameter: " & _GUICtrlListView_GetItemParam($hListView, Random(0, 99, 1)))
; Loop until user exits
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main
|