一次制作多个 GUI,但需要很长时间!我怎样才能做得更快

问题描述

我一次加载 15 个 GUI。但从字面上看,这需要很长时间。当我读取另一个数据并应用于那些 GUI 时,它也需要相当长的时间。希望得到任何提示,以便我能够自己做。谢谢!

;Gui,Add,Button,x-20 y-20 gButton +default
Gui -Caption +LastFound +AlwaysOnTop +ToolWindow
Gui,Margin,0
Gui,Font,s8 cBlack



Loop,15
{
    AIndex:=A_Index-1
    X:=Mod(AIndex,29)*37+20
    Y:=(Floor(AIndex/29))*130+30
    Gui,Progress,x%X% y%y% h100 w25 cBlue VerticalProgress_Value_%A_Index%,50
    x:=x-7
    y:=y+100
    Gui,x%x% y%y% W40 vProgress_Title_%A_Index% gProgress_Execute
    x:=x+6
    y:=y-110
    Gui,Text,x%x% y%y% W40 vProgress_Percent_%A_Index%
}

Mask := "Yellow"
Gui,Color,Yellow
;WinSet,TransColor,%Mask%
Gui,-dpiscale 
Gui,Show,x0 y0 h1100

return

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)