I’ve got some Problems with sizers and StaticTexts.
My Code:
@sizer = VBoxSizer.new
@sizer.add_item(StaticText.new(self, -1, “Test”), flag: ALIGN_CENTRE)
Until here, everything is OK, Text appears on screen at the right place.
Now i want to remove this Text and replace it with two others. For this
do the following:
@sizer.remove(0)
@sizer.layout()
@sizer.add_item(StaticText.new(self, -1, “Min”), flag: ALIGN_CENTRE)
@sizer.add_item(StaticText.new(self, -1, “Max”), flag: ALIGN_CENTRE)
Now “Min” and “Max” appear at the right place (Min at the place of
“Test” and “Max” under it), but the old Text “Test” is still in place
and “behind” “Min” visible.
What am i doing wrong? Any ideas?