为列表视图控件的指定数量项目分配内存
#Include <GuiListView.au3>
_GUICtrlListView_SetItemCount($hWnd, $iItems)
$hWnd | 控件句柄 |
$iItems | 最终将包含的项目数 |
成功: | 返回 True |
失败: | 返回 False |
#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
$Debug_LV = False ; 检查传递给 ListView 函数的类名, 设置为真并使用另一控件的句柄可以看出它是否有效
_Main()
Func _Main()
Local $hListView
GUICreate("ListView Set Item Count", 400, 300)
$hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
GUISetState()
; 添加列
_GUICtrlListView_AddColumn($hListView, "Items", 100)
; 添加项目
_GUICtrlListView_SetItemCount($hListView, 100)
_GUICtrlListView_BeginUpdate($hListView)
For $x = 1 To 100
GUICtrlCreateListViewItem("Item " & $x, $hListView)
Next
_GUICtrlListView_EndUpdate($hListView)
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main