函数参考


_GUICtrlListView_SetItemCount

为列表视图控件的指定数量项目分配内存

#Include <GuiListView.au3>
_GUICtrlListView_SetItemCount($hWnd, $iItems)

参数

$hWnd 控件句柄
$iItems 最终将包含的项目数

返回值

成功: 返回 True
失败: 返回 False

注意/说明

 控件为指定数目的项目分配内存数据结构.
 避免控件为每次添加项目而重新分配内存数据结构.

相关

_GUICtrlListView_GetItemCount

示例/演示


#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