I am creating a simple wx.Dialog
box for my wxPython application.
I have a panel inside that dialog box with many widgets and the size of the panel is larger than the dialog box. I want to scroll that panel using a wx.Slider
. I don't want to use ScrolledPanel
which is there by default in the library because the default windows scroller that appears for that looks dirty.
Can anyone guide me how to do such a thing. I mean how to scroll a panel. I am ready for using wx.PaintDc
if needed.