请教一个问题
托盘我制作好一个软件,``然后点窗体上面的最少化,可以直接变成托盘的样子嘛 ,应该要怎么写,请教高手哈,` 帮助文件里面就有托盘的代码了
你进行修改就可以勒
代码如下
#Include <Constants.au3>
#NoTrayIcon
Opt("TrayMenuMode",1) ; Default tray menu items (Script Paused/Exit) will not be shown.
$exititem = TrayCreateItem("Exit")
TraySetIcon("warning")
TraySetToolTip("SOS")
TraySetState(); Show the tray icon
$toggle = 0
While 1
$msg = TrayGetMsg()
Select
Case $msg = 0
Sleep(1000)
If $toggle = 0 Then
TraySetState(); Show the tray icon
$toggle = 1
Else
TraySetState(2) ; Hide the tray icon
$toggle = 0
EndIF
Case $msg = $exititem
ExitLoop
EndSelect
WEnd
Exit 求人不如求已
页:
[1]