用KOAD画就可以啊
不知道是不是这样 随便写了写
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 380, 427, 192, 124)
$Input1 = GUICtrlCreateInput("Input1", 88, 48, 225, 21)
$Input2 = GUICtrlCreateInput("Input2", 88, 88, 233, 21)
$Input3 = GUICtrlCreateInput("Input3", 88, 128, 233, 21)
$Button1 = GUICtrlCreateButton("确定", 104, 184, 153, 41)
$Button2 = GUICtrlCreateButton("取消", 104, 248, 153, 41)
$Label1 = GUICtrlCreateLabel("chaolianjie", 88, 16, 54, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Label1
ShellExecute("http://www.baidu.com")
EndSwitch
WEnd |