插入列
#Include <GuiListView.au3>
_GUICtrlListView_InsertColumn($hWnd, $iIndex, $sText [, $iWidth = 50 [, $iAlign = -1 [, $iImage = -1 [, $fOnRight = False]]]])
$hWnd | 控件句柄 |
$iIndex | 列的 0 基索引 |
$sText | 列标题文本 |
$iWidth | [可选参数] 列像素宽度 |
$iAlign | [可选参数] 列标题和列项目文本对齐方式: 0 - 文本左对齐 1 - 文本右对齐 2 - 文本居中 |
$iImage | [可选参数] 图像列表中的图像 0 基索引 |
$fOnRight | [可选参数] 如为 True, 则列图像显示在文字右侧 |
成功: | 返回新列的索引 |
失败: | 返回 -1 |
#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
$Debug_LV = False ; 检查传递给 ListView 函数的类名, 设置为真并使用另一控件的句柄可以看出它是否有效
_Main()
Func _Main()
Local $hListView
GUICreate("ListView Insert Column", 400, 300)
$hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
GUISetState()
; 插入列
_GUICtrlListView_InsertColumn($hListView, 0, "Column 1", 100)
_GUICtrlListView_InsertColumn($hListView, 1, "Column 2", 100)
_GUICtrlListView_InsertColumn($hListView, 2, "Column 3", 100)
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main