This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
电影没有开始。如何运行 QMovie 直到功能完成?
def gogo(self):
self.movie.start()
thread = threading.Thread(target=self.plot)
thread.start()
# wait here for the result to be available before continuing
thread.join()
self.movie.stop()