如何逐渐模糊背景?

How to gradually blur the background?

我有这样的 GUI:

Gui +LastFound +AlwaysOnTop +ToolWindow -Caption
Gui, Add, Text,, 00:00
WinSet, Transparent, 200
Gui, Show, NoActivate

截图:

有没有办法让背景从外到内逐渐模糊?我想隐藏到框的边界。我在 Gui.

中看不到任何帮助

通过使用开箱即用的命令,您实际上只有透明度 "slider" 作为您唯一的工具。

获得所需效果的解决方法是在透明背景上放置自定义透明图像。也就是说,您可以在图片中创建所需的渐变效果(例如透明 .PNG),然后将控件覆盖在图片之上,如下所示:

Gui +LastFound +AlwaysOnTop +ToolWindow -Caption
Gui, Add, Picture, w100 h100 , C:\TransparentBackground.png
Gui, Add, Text,xp10 yp10, 00:00
WinSet, Transparent, 200
Gui, Show, NoActivate