Skip to content

Instantly share code, notes, and snippets.

@raceybe
raceybe / wxpython_panels.py
Created October 19, 2018 17:34
wxPython Menubar, Toolbar, Statusbar, Panels, Nested Sizers
import wx
class MainFrame(wx.Frame):
def __init__(self, *args, **kwargs):
super(MainFrame, self).__init__(*args, **kwargs)
# Setup the frame
self.SetSize(1366, 768)
self.SetTitle('Panel Layout')