|
|
发表于 2012-9-3 15:41:01
|
显示全部楼层
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <array.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 623, 449, 192, 114)
$Label1 = GUICtrlCreateLabel("Label1", 56, 64, 364, 41)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$hand=ControlGetHandle($Form1,"",$Label1)
$a=ControlGetPos($hand,"","")
_ArrayDisplay($a)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd |
评分
-
查看全部评分
|