Hello-
What would be the best way to create a rollover image event within wxpython, i've tried using this code to no avail:
self.ImagePlacer.Bind(wx.EVT_ENTER_WINDOW, self.printTester)
thanks
dom
Hello-
What would be the best way to create a rollover image event within wxpython, i've tried using this code to no avail:
self.ImagePlacer.Bind(wx.EVT_ENTER_WINDOW, self.printTester)
thanks
dom
I think you are looking for the wx.EVT_MOTION event. It’s a MouseEvent callled when the mouse moves on the binded item.