我想用我在另一个子例程上执行的任务的进度更新我在主窗口上的进度条,这可能吗?
为了尽可能清楚,我将有 2 个文件:
在我的Mainwindow.py 中,我会有类似的内容:
import Calculations
#some code
self.ui.progressBar
Calculations.longIteration("parameters")
然后我会有一个单独的文件用于计算:Calculations.py
def longIteration("parameters")
#some code for the loop
"here I would have a loop running"
"And I would like to update the progressBar in Mainwindow"
那可能吗?
还是应该以不同的方式完成?
谢谢。