![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archive[wxpython] StaticBoxSizer problems
From: Matthias Kluwe <mkluwe@gmail.com>
Date: Wed Mar 08 2006 - 21:05:08 CET
Hi!
I'd like to place several StaticBoxes in a frame, but I can't get it
Consider the following code:
import wx
app = wx.PySimpleApp()
This should show a frame containing a StaticBox which contains a
Additionally: wx.StaticBoxSizer.__init__.__doc__ says that a
upper_sizer = wx.StaticBoxSizer(upper_box)
to
upper_sizer = wx.StaticBoxSizer(StaticBox=upper_box)
I get the error: TypeError: new_StaticBoxSizer() takes at least 1
What am I missing?
Regards,
|