函数参考


_GUICtrlListBox_InitStorage

分配存储项目的内存

#include <GuiListBox.au3>
_GUICtrlListBox_InitStorage($hWnd, $iItems, $iBytes)

参数

$hWnd 控件的控件ID/句柄
$iItems 计划添加项目的总数
$iBytes 计划使用的内存总数

返回值

成功: 返回预分配内存的项目总数

注意/说明

None.

相关

_GUICtrlListBox_AddFile, _GUICtrlListBox_AddString, _GUICtrlListBox_Dir, _GUICtrlListBox_InsertString

示例/演示


#include <GuiListBox.au3>
#include <GUIConstantsEx.au3>

$Debug_LB = False ;检查传递给 ListBox 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作

_Main()

Func _Main()
    Local $hListBox

    ; 创建 GUI
    GUICreate("List Box Init Storage", 400, 296)
    $hListBox = GUICtrlCreateList("", 2, 2, 396, 296)
    GUISetState()

    ; 添加文件
    _GUICtrlListBox_BeginUpdate($hListBox)
    _GUICtrlListBox_ResetContent($hListBox)
    MsgBox(4160, "信息", "Storage Allocated: " & _GUICtrlListBox_InitStorage($hListBox, 100, 4096))
    _GUICtrlListBox_Dir($hListBox, @WindowsDir & "\win*.exe")
    _GUICtrlListBox_AddFile($hListBox, @WindowsDir & "\notepad.exe")
    _GUICtrlListBox_EndUpdate($hListBox)

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main