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.
我正在使用 enthought 的 traitsui 包。我正在启动这样的 gui:
appui = TestBenchUI() appui.configure_traits()
自定义guiTestBenchUI源自enthought.traits.api.HasTraits. 一些 gui 操作需要一些时间才能完成,我希望 gui 显示等待/忙碌光标。我一直无法确定如何做到这一点。有人可以启发我吗?
TestBenchUI
enthought.traits.api.HasTraits
提前致谢。
添加此导入:
from enthought.pyface.api import GUI
然后当你需要显示一个繁忙的光标时:
GUI.set_busy()