dumaogao 发表于 2015-5-7 21:57:17

做了个界面gui程序。怎么设置这个界面永远在最前端?

做了个界面gui程序。怎么设置这个界面永远在最前端?

80107671 发表于 2015-5-8 09:47:31

本帖最后由 80107671 于 2015-5-8 09:49 编辑

...
$Form1 = GUICreate("MY gui", 269, 96, -1, -1)


WinSetOnTop("$Form1", "", 1)
...

dumaogao 发表于 2015-5-8 10:41:21

回复 2# 80107671


    【】【】【】试了一下】【】【】【不行。。。。。。

80107671 发表于 2015-5-8 11:26:44

#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]
查看完整版本: 做了个界面gui程序。怎么设置这个界面永远在最前端?