|
发表于 2010-4-24 09:50:11
|
显示全部楼层
本帖最后由 hxwb518 于 2010-4-24 09:51 编辑
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$QQ2009 = GUICreate(" QQ2009--!", 157, 132, 215, 110)
$text = "欢迎 你使用本程序"
MsgBox(1,"title",$text)
$Button1 = GUICtrlCreateButton("迅雷下载99%", 16, 16, 129, 25)
$Button2 = GUICtrlCreateButton("上传问题!", 16, 64, 131, 25)
$Label1 = GUICtrlCreateLabel("By: 清风制作 技术无国界", 8, 104, 141, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd |
|