What is wrong with this code? I am trying to place a notebook on a panel that is being controlled by a boxsizer. I am new to wxpython and can't figure out what I am doing wrong. When I run it it just makes a mess in the corner :(
import wx class TestNoteBook(wx.Frame): def __init__(self, parent, id, title): wx.Frame.__init__(self, parent, id, title, size=(600, 500)) panel = wx.Panel(self) hsizer = wx.BoxSizer(wx.HORIZONTAL) leftpanel = wx.Panel(panel) notebook = wx.Notebook(leftpanel) posterpage = wx.Panel(notebook) listpage = wx.Panel(notebook) notebook.AddPage(posterpage, 'posters') notebook.AddPage(listpage, 'list') hsizer.Add(leftpanel, 1, wx.EXPAND) rightpanel = wx.Panel(panel) hsizer.Add(rightpanel, 1, wx.EXPAND) panel.SetSizer(hsizer) app = wx.App() frame = TestNoteBook(None, -1, 'notebook') frame.Show() app.MainLoop()