是这样吗?#include <TabConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
Global $form1 = GUICreate("测试", 346, 332, 350, 211)
Global $Graphic1 = GUICtrlCreateGraphic(20, 85, 305, 12)
GUICtrlSetGraphic($Graphic1, $GUI_GR_COLOR, 0xff0000, 0x000000)
GUICtrlSetGraphic($Graphic1, $GUI_GR_LINE, 320, 0)
Global $Tab = GUICtrlCreateTab(7, 4, 320, 290)
Global $Tab1 = GUICtrlCreateTabItem("基本属性")
Global $Tab2 = GUICtrlCreateTabItem("高级属性")
GUICtrlCreateTabItem("")
GUISetState()
Do
Until GUIGetMsg() = -3
|