如果要GUI页面可以自己画。#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 329, 205, 192, 124)
$Label1 = GUICtrlCreateLabel("FTP地址:", 48, 32, 60, 17)
$Button1 = GUICtrlCreateButton("登入", 80, 144, 73, 25)
$Button2 = GUICtrlCreateButton("退出", 184, 144, 73, 25)
$Label2 = GUICtrlCreateLabel("帐号:", 64, 80, 40, 17)
$Label3 = GUICtrlCreateLabel("密码:", 64, 112, 40, 17)
$Input1 = GUICtrlCreateInput("", 120, 72, 121, 21)
$Input2 = GUICtrlCreateInput("", 120, 104, 121, 21)
$Input3 = GUICtrlCreateInput("", 120, 29, 121, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|