wz4705 发表于 2010-3-7 23:04:12

如何获取控件大小,一个简单窗口中的GUICtrlCreateEdit[已解决]

本帖最后由 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","")
MsgBox(0, "活动窗口客户端大小 (宽度,高度):", $size & "," & $size)用这一条不行,那么是用什么函数获取的,谢谢回答。

visualc 发表于 2010-3-7 23:12:52

在帮助里好像有control什么的,在索引中,看看

wz4705 发表于 2010-3-7 23:21:59

ControlGetPos
谢谢楼上的兄弟
页: [1]
查看完整版本: 如何获取控件大小,一个简单窗口中的GUICtrlCreateEdit[已解决]