本人新手,想问一下如何获取GUI自身控件的属性,比如按扭的名称、大小等等
我觉得AU3比VB方便多了。现在由VB转入AU3。可是AU3控件属性跟VB写法不一样,
怎能在代码里写控件属性。
本人新手,想问一下如何获取自身控件的属性,比如按扭的名称、大小等等
[ 本帖最后由 leilin169 于 2009-3-4 10:03 编辑 ] 这样?
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 138, 86, 192, 114)
$Button1 = GUICtrlCreateButton("Button1", 24, 24, 75, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$Pos = ControlGetPos("Form1", "", $Button1)
$Name = GUICtrlRead($Button1)
MsgBox(0, 0, "名字:" & $Name & @LF & "X:" & $Pos & @LF & "Y:" & $Pos & @LF & "宽度:" & $Pos & @LF & "高度:" & $Pos)
EndSwitch
WEnd 非常感谢帮助!
页:
[1]