Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 PyQt 和 GUI 编程非常陌生。我正在制作游戏。我需要一个变量来不断更新(它是时间的函数)。我正在努力弄清楚如何做到这一点。我在 tkinter 中使用 self.after(10,self.updateCost()) 执行此操作,这会导致每 0.01 秒更新一次。
你可以在 PYQT 中这样做
QtCore.QTimer.singleShot(1000, self.updateCost())
请根据您的需要添加时间