python - Busy Cursor location on screen -


i'm using busycursor feature in wxpython follows:

wx.beginbusycursor() = wx.busyinfo("action in proggress")  long action  wx.endbusycursor() a.destroy() 

the msg pops in center of screen. how can control msg appears?

you can't. wx.busyinfo widget not support setting window position. if need that, recommend using subclass of wx.dialog or wx.messagedialog.


Comments