ive looked through the wxpython website however I do not believe it has the stock cursor ID for drag.
Here is an image of the cursor:
http://helpcentral.componentone.com/nethelp/truedbgrid8/ImagesExt/image19_31.gif
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Cursor availability depends on OS. In Windows, None of the available cursor images correspond to the one you want. You can use the wxPython demo to check it for your OS (Demos -> Using images -> Cursor) although apparently there is no cursor with a promising name such as wx.DRAG_CURSOR.
However it is very easy to obtain a custom cursor using wx.Cursor or wx.CursorfromImage as in the example from Driscoll blog.