boxsizer inside a panel
- From: Gandalf <goldnery@xxxxxxxxx>
- Date: Sat, 30 Aug 2008 07:26:50 -0700 (PDT)
the following code's panel elements doesn't react like a table though
is haze boxsizer
What is wrong here? :
panel3=wx.Panel(self,-1,(10,10), style=wx.SIMPLE_BORDER,
size=(370, 150))
panel3.SetBackgroundColour("#ffffff")
text1=wx.StaticText(panel3, -1, 'Hello')
text2=wx.StaticText(panel3, -1, 'text text text
text')
box = wx.BoxSizer(wx.HORIZONTAL)
box.Add(text1, 1, wx.ALIGN_LEFT)
box.Add(text2, 1, wx.ALIGN_RIGHT)
self.SetAutoLayout(True)
panel3.SetSizer(box)
self.Layout()
thanks!
.
- Prev by Date: How to delete elements from Tix Combo Box?
- Next by Date: Writing to ms excel
- Previous by thread: How to delete elements from Tix Combo Box?
- Next by thread: Writing to ms excel
- Index(es):