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?

link|improve this question

0% accept rate
What kind of sizer are you using? What does "strangely" mean? – Mike Driscoll Oct 25 '11 at 13:52
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.