+ st.SetForegroundColour(wx.WHITE)
+ st.SetBackgroundColour(wx.BLUE)
+
+ # Show how to put an image on one of the notebook tabs,
+ # first make the image list:
+ il = wx.ImageList(16, 16)
+ idx1 = il.Add(images.getSmilesBitmap())
+ self.AssignImageList(il)
+
+ # now put an image on the first tab we just created:
+ self.SetPageImage(0, idx1)
+
+
+ win = self.makeColorPanel(wx.RED)