I need ability to modify the cursor while my application is running, and restore it afterwards. Cursor.Current doesn't seem to work. Any other alternatives? Is there any API for this?

Thanks

link|improve this question

78% accept rate
feedback

2 Answers

up vote 0 down vote accepted

I found out it's not a good idea to change the cursor globally. Instead I decided to follow the actual cursor via hooks, and draw my object around it.

link|improve this answer
feedback

Well you could try something like this (changing from with a running instance of a form in your application)

            this.Cursor = Cursors.Cross;

and reset it back to default using

            this.Cursor = Cursors.Default;

The Cursors class holds various Cursor objects you could use

link|improve this answer
That's not what I was looking for. this.Cursor changes only the form cursor, and not the global one. – LoveDotNet Jun 7 '10 at 12:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.