本帖最后由 wz4705 于 2010-3-7 23:25 编辑 #include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 447, 192, 124)
$Edit1 = GUICtrlCreateEdit("", 144, 160, 185, 89)
GUICtrlSetData(-1, "Edit1")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
这是一个用koda生成的简单窗口,用窗口信息工具控件一栏里可以看到Edit1这一项参数185,189$size = WinGetClientSize("Form1","[CLASS:Edit; INSTANCE:1]")
MsgBox(0, "活动窗口客户端大小 (宽度,高度):", $size[0] & "," & $size[1])
用这一条不行,那么是用什么函数获取的,谢谢回答。 |