Ttk进度条不会更新

时间:2018-02-27 23:03:23

标签: python progress-bar ttk frozen

以下是我的代码的相关内容。

    while True:
    p = int(psutil.cpu_percent(interval=0.1))
    progressbar = ttk.Progressbar(orient=HORIZONTAL, length=screen_width, mode='determinate')
    progressbar['value'] = p
    progressbar.update_idletasks()

因此,当我运行时,只是吐出冻结它从p变量得到的第一个值。我试过设置VARIABLE而不是像这样设置值。请帮忙。

0 个答案:

没有答案