设置项目的像素高度
#include <GuiListBox.au3>
_GUICtrlListBox_SetItemHeight($hWnd, $iHeight [, $iIndex = 0])
$hWnd | 控件的控件ID/句柄 |
$iHeight | 指定项目的像素高度 |
$iIndex | [可选参数] 项目的 0 基索引. 仅使用于具有 LBS_OWNERDRAWVARIABLE 样式的控件,否则,设置为 0. |
成功: | 返回 True |
失败: | 返回 False |
#include <GuiListBox.au3>
#include <GUIConstantsEx.au3>
$Debug_LB = False ;检查传递给 ListBox 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
_Main()
Func _Main()
Local $hListBox
; 创建 GUI
GUICreate("List Box Set Item Height", 400, 296)
$hListBox = GUICtrlCreateList("", 2, 2, 396, 296)
GUISetState()
; 添加字符串
_GUICtrlListBox_BeginUpdate($hListBox)
For $iI = 1 To 9
_GUICtrlListBox_AddString($hListBox, StringFormat("%03d : Random string", Random(1, 100, 1)))
Next
_GUICtrlListBox_EndUpdate($hListBox)
; 显示项目高度
MsgBox(4160, "信息", "Item height: " & _GUICtrlListBox_GetItemHeight($hListBox))
; 设置项目高度
_GUICtrlListBox_SetItemHeight($hListBox, 26)
; 显示项目高度
MsgBox(4160, "信息", "Item height: " & _GUICtrlListBox_GetItemHeight($hListBox))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main