设置标签项目的最小宽度
#include <GuiTab.au3>
_GUICtrlTab_SetMinTabWidth($hWnd, $iMinWidth)
$hWnd | 控件句柄 |
$iMinWidth | 指定最小宽度. 如为 -1, 控件将使用默认宽度. |
#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
$Debug_TAB = False ; 检查传递给函数的类名, 设置为真并使用另一控件的句柄可以看出它是否有效
_Main()
Func _Main()
Local $hTab
; 创建 GUI
GUICreate("Tab Control Set Min Tab Width", 400, 300)
$hTab = GUICtrlCreateTab(2, 2, 396, 296)
GUISetState()
; 添加标签
_GUICtrlTab_SetMinTabWidth($hTab, 80)
_GUICtrlTab_InsertItem($hTab, 0, "Tab 1")
_GUICtrlTab_InsertItem($hTab, 1, "Tab 2")
_GUICtrlTab_InsertItem($hTab, 2, "Tab 3")
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main