Right now, I am writing a python program using ObjectListView package. When the list is empty, the back ground will show words “This list is empty”. But I want to change it into an animation. How to realize it?
Do I have to change the ObjectListView library to realize it?
Right now, I am writing a python program using ObjectListView package. When the list
Share
“This list is empty” is shown in a
StaticTextcontrol (namedstEmptyListMsg). You can change the message and the font by callingSetEmptyListMsgandSetEmptyListMsgFontrespectively.If you want to replace the
StaticTextwith an animation, then, I think, you should write your own customListCtrlbased onObjectListVieworListCtrl.This link can help you to create an animation: http://www.daniweb.com/software-development/python/code/216673/wxpython-animated-gif#