什么是DRAG鼠标光标ID,wxpython?

时间:2011-11-23 22:49:41

标签: python wxpython

我查看了wxpython网站但是我不相信它有拖动的库存光标ID。

这是光标的图像: http://helpcentral.componentone.com/nethelp/truedbgrid8/ImagesExt/image19_31.gif

由于

1 个答案:

答案 0 :(得分:1)

游标可用性取决于操作系统。在Windows中,available cursor图像均不对应您想要的图像。您可以使用wxPython演示来检查您的操作系统(演示 - >使用图像 - >光标),尽管显然没有带有前途名称的光标,例如wx.DRAG_CURSOR。

然而,使用wx.Cursorwx.CursorfromImage获取自定义光标非常容易,如Driscoll blog中的示例所示。

myCursor = wx.Cursor(img_path, cursor_type)
self.SetCursor(myCursor)