Matthias Kluwe wrote:
> Hi!
>
> I'd like to place several StaticBoxes in a frame, but I can't get it
> right.
>
> Consider the following code:
>
> import wx
>
> app = wx.PySimpleApp()
> frame = wx.Frame(parent=None, title="Test")
> box = wx.BoxSizer(wx.VERTICAL)
> frame.SetSizer(box)
> upper_bo
Hi!
I'd like to place several StaticBoxes in a frame, but I can't get it
right.
Consider the following code:
import wx
app = wx.PySimpleApp()
frame = wx.Frame(parent=None, title="Test")
box = wx.BoxSizer(wx.VERTICAL)
frame.SetSizer(box)
upper_box = wx.StaticBox(parent=frame, label="Upper Box")