#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 156, 202, 192, 124)
$Button1 = GUICtrlCreateButton("软件1", 40, 24, 75, 25)
$Button2 = GUICtrlCreateButton("软件2", 40, 64, 75, 25)
$Button3 = GUICtrlCreateButton("软件3", 40, 104, 75, 25)
$Button4 = GUICtrlCreateButton("不安装", 40, 144, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
;run(........)
;exit
Case $Button2
;run(........)
;exit
Case $Button3
;run(........)
;exit
Case $Button4
exit
EndSwitch
WEnd
你新来的? |