[已解决]WIN10这种右下角弹出通知能实现吗
本帖最后由 feelsky 于 2020-5-29 16:34 编辑TrayTip在Win10中显示时长不准不受控制,希望脚本运行中一直实现这种提示效果,在WIN7下也能这样显示。
TrayTip这个我在WIN10中是可以显示出来的。但是WIN7中不会来。楼主知道WIN7中哪里可以开启的吗。。。至于楼主的这种效果。我也是很想学习。。有大神可以讲解一下的吗。 用GUI随便整了个
#NoTrayIcon
#include <WindowsConstants.au3>
$width = 350
$hight = 80
$hwnd = GUICreate("", $width, $hight, @DesktopWidth - $width -6, @DesktopHeight - 150, BitOR($WS_POPUP, $WS_DISABLED), $WS_EX_TOOLWINDOW)
GUISetFont(11.5, 400, 0, "Microsoft YaHei")
GUISetBkColor(0x000000)
GUICtrlCreateicon(@ScriptDir & "\img.ico", -1, 20, 20, 40, 40)
$Label1 = GUICtrlCreateLabel("正在备份注册表,请稍候…", 80,20, 250, 24)
GUICtrlSetFont(-1, -1,800)
GUICtrlSetColor(-1, 0xFFFFFF)
$Label2 = GUICtrlCreateLabel("注册表备份工具",80, 45, 250, 24)
GUICtrlSetFont(-1, 10)
GUICtrlSetColor(-1, 0x9c9c9c)
DllCall("user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 200, "long", 0x00040002)
sleep(5000)
DllCall("user32.dll", "int", "AnimateWindow", "hwnd", $hwnd, "int", 300, "long", 0x00050001)
页:
[1]