All,
I’m not sure why, but this doesn’t seem to give me a hand cursor. Instead, I get the usual arrow cursor on my macbook.
import wx
class CrossHair(wx.Frame):
def init(self, parent, id, title):
wx.Frame.init(self, parent, id, title, size=(250, 150))
self.SetBackgroundColour(‘WHITE’)
self.SetCursor(wx.StockCursor(wx.CURSOR_HAND))
self.Center()
self.Show()
app = wx.App(False)
CrossHair(None, -1, ‘CrossHair2’)
app.MainLoop()
D.
···
–
To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com
or visit http://groups.google.com/group/wxPython-users?hl=en