document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class CImage(wx.StaticBitmap):
  2.     def __init__(self, parent, aBitmap, *args, **kwargs):
  3.         wx.StaticBitmap.__init__(self, parent, -1, aBitmap, *args, size=(aBitmap.GetWidth(), aBitmap.GetHeight()), **kwargs)
  4.    
  5.     def Add(self, aBox):
  6.         aBox.Add(self, 0, wx.ALIGN_CENTER)
');