My Python code:
self.images = wx.StaticBitmap(self, id=-1, pos=wx.DefaultPosition,
size=(200,150),
style= wx.SUNKEN_BORDER)
self.hbox = wx.BoxSizer(wx.HORIZONTAL)
self.sizer.Add(self.hbox) # my main sizer
#in function dinamically captured images
bmp = wx.BitmapFromImage(image)
self.images.SetBitmap(bmp)
self.hbox.Add(self.images, 1, wx.EXPAND | wx.ALL, 3)
...and after I want to add next image (another - I don't want to replace older) I have information "Adding a window to the same sizer twice?" How can I resolve this problem?