比较笨的
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 623, 449, 192, 114)
$Tab1 = GUICtrlCreateTab(85, 30, 530, 410)
$Button1 = GUICtrlCreateButton("星期一", 10, 32, 73, 33)
$Button2 = GUICtrlCreateButton("星期二", 10, 65, 73, 33)
$Button3 = GUICtrlCreateButton("星期三", 10, 98, 73, 33)
$Button4 = GUICtrlCreateButton("星期四", 10, 131, 73, 33)
$Button5 = GUICtrlCreateButton("星期五", 10, 164, 73, 33)
$Button6 = GUICtrlCreateButton("星期六", 10, 197, 73, 33)
$Button7 = GUICtrlCreateButton("星期日", 10, 230, 73, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd |