函数参考


_GUICtrlListBox_SetColumnWidth

设置全部列的像素宽度

#include <GuiListBox.au3>
_GUICtrlListBox_SetColumnWidth($hWnd, $iWidth)

参数

$hWnd 控件的控件ID/句柄
$iWidth 指定全部列的像素宽度

返回值

None.

注意/说明

 只适用于具有 $LBS_MULTICOLUMN 样式的控件

相关

示例/演示


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

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

_Main()

Func _Main()
    Local $hListBox

    ; 创建 GUI
    GUICreate("List Box Set Column Width", 400, 296)
    $hListBox = GUICtrlCreateList("", 2, 2, 396, 296, BitOR($LBS_STANDARD, $LBS_MULTICOLUMN))
    GUISetState()

    ; Set the width of the columns
    _GUICtrlListBox_SetColumnWidth($hListBox, 100)

    ; 添加字符串
    _GUICtrlListBox_BeginUpdate($hListBox)
    For $iI = 1 To 50
        _GUICtrlListBox_AddString($hListBox, StringFormat("Item %03d", $iI))
    Next
    _GUICtrlListBox_EndUpdate($hListBox)

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