freewaybsq 发表于 2013-10-30 11:55:03

GUI入门级源代码--共享--适合初学者

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <EditConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 623, 438, 192, 124)
GUICtrlCreateInput("",-1,-1,-1,-1,$ES_PASSWORD )
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###


While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd

凡之雪 发表于 2013-11-3 17:22:21

{:face (411):}什么情况

Sunrise95 发表于 2014-3-7 16:58:15

真的好适合的样子...
页: [1]
查看完整版本: GUI入门级源代码--共享--适合初学者