哪位高手懂CS的!帮帮忙!
能帮我写写这个登录器吗?我是一直都没写成功过!
#Region ;**** 参数创建于 ACNWrapper_GUI ****
#AutoIt3Wrapper_icon=forum_new_1220243475.ico
#EndRegion ;**** 参数创建于 ACNWrapper_GUI ****
#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 428, 373, 193, 125)
$Pic1 = GUICtrlCreatePic("xx.jpg", 8, 8, 409, 137, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
$Tab1 = GUICtrlCreateTab(8, 152, 409, 217)
GUICtrlSetFont(-1, 9, 400, 0, "Arial")
GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT)
$TabSheet1 = GUICtrlCreateTabItem("登陆设置")
$Input1 = GUICtrlCreateInput("填写你的游戏ID", 136, 209, 241, 21)
$Input2 = GUICtrlCreateInput("填写你的游戏密码", 136, 249, 241, 21)
$Button2 = GUICtrlCreateButton("启动游戏", 16, 313, 121, 41, 0)
$Button3 = GUICtrlCreateButton("返回", 288, 313, 121, 41, 0)
$Label4 = GUICtrlCreateLabel("账号", 64, 208, 44, 24)
GUICtrlSetFont(-1, 15, 400, 0, "黑体")
$Label5 = GUICtrlCreateLabel("密码", 64, 248, 44, 24)
GUICtrlSetFont(-1, 15, 400, 0, "黑体")
$TabSheet2 = GUICtrlCreateTabItem("参数设置")
$Group1 = GUICtrlCreateGroup("游戏路径设置", 16, 185, 393, 49)
$Input3 = GUICtrlCreateInput("设置你的CS路径", 24, 201, 281, 21)
$Button1 = GUICtrlCreateButton("浏览", 312, 201, 89, 25, 0)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("其他设置", 16, 241, 393, 89)
$Label1 = GUICtrlCreateLabel("分辨率:", 24, 265, 43, 17)
$Combo1 = GUICtrlCreateCombo("800X600", 72, 265, 97, 25)
GUICtrlSetData(-1, "960X600|1024X768|1152X864|1280X720|1280X800|1280X960|1280X1024")
$Label2 = GUICtrlCreateLabel("运行方式:", 24, 305, 55, 17)
$Combo2 = GUICtrlCreateCombo("窗口", 80, 305, 89, 25)
GUICtrlSetData(-1, "全屏")
$Label3 = GUICtrlCreateLabel("鼠标设置:", 192, 257, 55, 17)
$Radio1 = GUICtrlCreateRadio("-noforcemspd", 248, 257, 89, 17)
$Radio2 = GUICtrlCreateRadio("-noforcemaccel", 248, 281, 113, 17)
$Radio3 = GUICtrlCreateRadio("-noforcemparms", 248, 305, 97, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Button4 = GUICtrlCreateButton("应用设置", 288, 337, 113, 25, 0)
GUICtrlCreateTabItem("")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
[ 本帖最后由 qzdisk 于 2008-9-4 21:32 编辑 ] |