简体   繁体   中英

Busy/Wait Cursor in enthought traitsui

I am using the traitsui package from enthought. I'm launching a gui like this:

appui = TestBenchUI()
appui.configure_traits()

Where TestBenchUI is a custom gui derived from enthought.traits.api.HasTraits . Some of the gui operations take some time to complete, and I would like the gui to display a wait/busy cursor. I've been unable to determine how to do this. Could someone please enlighten me?

Thanks in advance.

Add this import:

from enthought.pyface.api import GUI

Then when you need to show a busy cursor:

GUI.set_busy()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM