nop 发表于 2011-12-21 14:07:29

球一个最简单的GUI

UI小白,以前从来没有做过UI,现在需要一个UI,只要有三个输入框,一个超链接,加上确定取消就行了。高手们应该两三行代码就搞定吧{:face (293):}

本来打算用InputBox的,嘿嘿

afan 发表于 2011-12-21 14:28:07

代码中如果含有错别字可能无法运行、当机甚至无法预计的后果…

0713fang 发表于 2011-12-22 00:30:19

楼主,你用画板画一个模板,来说明你想的什么样的GUI,才能帮上你的忙啊

转角遇到囜 发表于 2011-12-24 00:01:56

用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
页: [1]
查看完整版本: 球一个最简单的GUI