I am adding some control like this :
| statictext| stc1 | | statictext| stc2 |
| statictext| stc3 |
adding the control
self.text = wx.StaticText(self, label='C')
self.text.SetForegroundColour((0,102,0))
self.editor = STC(self)
self.Autosizer.Add(self.text,0)
self.Autosizer.Add(self.editor,0, wx.EXPAND)
self.Layout()
inserting the control
self.Autosizer.Insert(1, self.text)
self.Autosizer.Insert(1, self.editor)
but the controls were appended strangely. Does anyone know why?