X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec873c943d71f0d5f13e3398557071448cda6c23..a4027e74873007e3430af3bd77019bcab76f6c04:/wxPython/samples/wxPIA_book/Chapter-11/bordergridsizer.py diff --git a/wxPython/samples/wxPIA_book/Chapter-11/bordergridsizer.py b/wxPython/samples/wxPIA_book/Chapter-11/bordergridsizer.py deleted file mode 100644 index d03ba5badc..0000000000 --- a/wxPython/samples/wxPIA_book/Chapter-11/bordergridsizer.py +++ /dev/null @@ -1,23 +0,0 @@ -import wx -from blockwindow import BlockWindow - -labels = "one two three four five six seven eight nine".split() -flags = {"one": wx.BOTTOM, "two": wx.ALL, "three": wx.TOP, - "four": wx.LEFT, "five": wx.ALL, "six": wx.RIGHT, - "seven": wx.BOTTOM | wx.TOP, "eight": wx.ALL, - "nine": wx.LEFT | wx.RIGHT} - -class TestFrame(wx.Frame): - def __init__(self): - wx.Frame.__init__(self, None, -1, "GridSizer Borders") - sizer = wx.GridSizer(rows=3, cols=3, hgap=5, vgap=5) - for label in labels: - bw = BlockWindow(self, label=label) - flag = flags.get(label, 0) - sizer.Add(bw, 0, flag, 10) - self.SetSizer(sizer) - self.Fit() - -app = wx.PySimpleApp() -TestFrame().Show() -app.MainLoop()