本帖最后由 catcher 于 2010-11-4 22:32 编辑
帮你搜到了答案
http://www.autoitx.com/forum.php ... hlight=%B1%EA%C7%A9
下面是链接中13楼 xsjtxy 的代码#include <GUIConstantsEx.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
GUICreate("")
$tab=GUICtrlCreateTab (10,10, 300, 300,$TCS_VERTICAL + $TCS_BOTTOM)
GUICtrlSetFont(-1, 20, 400, 0, "@宋体")
$tab0=GUICtrlCreateTabitem ("第一个")
$tab1=GUICtrlCreateTabitem ( "第二个")
$tab2=GUICtrlCreateTabitem ("第三个")
GUISetState ()
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend
|