检索项目的子项边界矩形
#Include <GuiListView.au3>
_GUICtrlListView_GetSubItemRect($hWnd, $iIndex, $iSubItem[, $iPart = 0])
$hWnd | 控件句柄 |
$iIndex | 父项的 0 基索引 |
$iSubItem | 子项的索引 |
$iPart | [可选参数] 子项检索部分: 0 - 整个子项的矩形,包括图标和标签. 1 - 图标或小图标的矩形 |
返回如下格式数组: | |
[0] - 矩形左上角 X 坐标 | |
[1] - 矩形左上角 Y 坐标 | |
[2] - 矩形右下角 X 坐标 | |
[3] - 矩形右下角 Y 坐标 |
#include <GUIConstantsEx.au3>
#include <GuiListView.au3>
$Debug_LV = False ; 检查传递给 ListView 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
_Main()
Func _Main()
Local $aRect, $hListView
GUICreate("ListView Get SubItem Rect", 400, 300)
$hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
GUISetState()
; 添加列
_GUICtrlListView_AddColumn($hListView, "Column 1", 100)
_GUICtrlListView_AddColumn($hListView, "Column 2", 100)
_GUICtrlListView_AddColumn($hListView, "Column 3", 100)
; 添加项目
_GUICtrlListView_AddItem($hListView, "Row 1: Col 1")
_GUICtrlListView_AddSubItem($hListView, 0, "Row 1: Col 2", 1)
_GUICtrlListView_AddSubItem($hListView, 0, "Row 1: Col 3", 2)
_GUICtrlListView_AddItem($hListView, "Row 2: Col 1")
_GUICtrlListView_AddSubItem($hListView, 1, "Row 2: Col 2", 1)
_GUICtrlListView_AddItem($hListView, "Row 3: Col 1")
; Show item 2 sub item rect
$aRect = _GUICtrlListView_GetSubItemRect($hListView, 1, 1)
MsgBox(4160, "信息", StringFormat("Subitem Rectangle : [%d, %d, %d, %d]", $aRect[0], $aRect[1], $aRect[2], $aRect[3]))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main