检索当前标签行数量
#include <GuiTab.au3>
_GUICtrlTab_GetRowCount($hWnd)
$hWnd | 控件句柄 |
#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
$Debug_TAB = False ; 检查传递给函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
_Main()
Func _Main()
Local $hTab
; 创建 GUI
GUICreate("Tab Control Get Row Count", 400, 300)
$hTab = GUICtrlCreateTab(2, 2, 396, 296, $TCS_MULTILINE)
GUISetState()
; 添加标签
For $x = 0 To 10
_GUICtrlTab_InsertItem($hTab, $x, "Tab " & $x + 1)
Next
; Get row count
MsgBox(4160, "信息", "Row count: " & _GUICtrlTab_GetRowCount($hTab))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main