Add scrollbars in wxpython, but it doesn't appear
问题 I saw a lot of scrollbars on the web, but my situation is different, with more wx.FlexGridSizer objects.The scoller dosen't appear. class MPL_Frame(wx.Frame): """MPL_Frame可以继承,并可修改,或者直接使用""" # global task def __init__(self, title="MPL_Frame Example In wxPython", size=(1300, 500)): wx.Frame.__init__(self, parent=None, title=title, size=size) self.scroller = wx.ScrolledWindow(self, -1) self.scroller.SetScrollbars(1, 1, 640, 400) self.grid = DataGrid(self, (17, 16)) ship_grid = DataGrid(self,