本帖最后由 rolaka 于 2009-7-18 17:12 编辑
4# rolaka
- 我看到你的回复中多次提到orz,这是什么的缩写?
- 你在回复中提到使用ControlListView,但Windows中树状控件不是叫ControlTreeView么?
- 真的是非常期待你的关于skype或者是Kaspersky的安装 ...
gywx 发表于 2009-7-15 13:11
- 你在回复中提到使用ControlListView,但Windows中树状控件不是叫ControlTreeView么?
..写错了...
- 真的是非常期待你的关于skype或者是Kaspersky的安装 ...
...可以计算控件在窗体里的相对位置...具体的可以搜索或者看help里关于opt的项目
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Opt("GUIOnEventMode", 1)
$Form1 = GUICreate("窗体1", 243, 99, 302, 218)
GUISetOnEvent($GUI_EVENT_CLOSE, "Form1Close")
$Button1 = GUICtrlCreateButton("点我~", 56, 32, 137, 33, $WS_GROUP)
GUICtrlSetOnEvent(-1, "Button1Click")
GUISetState(@SW_SHOW)
Opt('MouseCoordMode', 0)
MouseClick("" , 100, 80)
While 1
Sleep(100)
WEnd
Func Button1Click()
MsgBox(0, "", "我被点了下")
EndFunc
Func Form1Close()
Exit
EndFunc
|