本帖最后由 Ycxw2008 于 2013-10-2 21:55 编辑
好吧,你的问题我用Koda1分钟帮你做好了
建议你多看看帮助。这些问题 帮助文件上写的明明白白
还有修边缘 和 底下的那个透明的问题
只要你 善于搜索+仔细研究帮助文件 就OK了
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("窗体1", 313, 188, 302, 218)
GUISetFont(12, 400, 0, "微软雅黑")
GUISetBkColor(0x3399FF)
$Label1 = GUICtrlCreateLabel("用户名:", 64, 32, 68, 25)
$Label2 = GUICtrlCreateLabel("密 码:", 64, 80, 68, 25)
GUICtrlCreateInput("", 136, 32, 121, 29)
GUICtrlCreateInput("", 136, 80, 121, 29)
$Label3 = GUICtrlCreateLabel("", 64, 128, 196, 22)
GUICtrlSetBkColor(-1, 0xFFFFFF)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|