将我的应用程序的 UI 从 Tkinter
更改为 Kivy
我无法找出相当于 Tkinter .after()
函数的 Kivy:
Tkinter:
self.after(5000, self.functionX)
基维:
?????
最佳答案
Clock.schedule_once
是你的 friend !
Clock.schedule_once(function_x, 5.0) # like the 5000 ms in your example
关于python - kivy 相当于 Tkinter after(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41036937/