做了个界面gui程序。怎么设置这个界面永远在最前端?
做了个界面gui程序。怎么设置这个界面永远在最前端? 本帖最后由 80107671 于 2015-5-8 09:49 编辑...
$Form1 = GUICreate("MY gui", 269, 96, -1, -1)
WinSetOnTop("$Form1", "", 1)
... 回复 2# 80107671
【】【】【】试了一下】【】【】【不行。。。。。。 #include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Opt('MustDeclareVars', 1)
Example1()
; 示例 1
Func Example1()
Local $msg, $test
$test = GUICreate("我的窗口") ; 创建屏幕居中窗口
GUISetState(@SW_SHOW) ; 显示窗口
WinSetOnTop($test, "", 1)
; 运行窗口直到用户关闭
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
GUIDelete()
EndFunc ;==>Example1
这样写,你总能理解了吧。
页:
[1]