How to customize wx.ProgressDialog?
Is it possible to customize ProgressDialog in wxP开发者_高级运维ython? For instance, I would like to make the progressbar slimmer, and the window size wider.
SetSize()
method doesn't appear to have any effect.
The wx.ProgressDialog
isn't customizable its just a wrapper around the native ProgressDialog
, the the easiest solution would be to roll your own by extending the wx.Dialog
class and using a wx.Gauge
精彩评论