How can I use a custom C # cursor?

Well, I want to ask you, how can I add a custom cursor to my C # application, where do I have a (.cur) file?

second I want to add two user cursors that are opened manually and closed (for example, those used in Adobe Acrobat Reader or those used in windows photo viewr), because I have the drag and drop function n.

So, please, where can I find .cur files for these curosrs, I searched the entire network, but I got nothing. I found one on the forum that said that I can find the open hand cursor in one of the resources inside the assembly in a mixed Microsoft expression. I have a .Net reflector and I extracted the .cur file from this assembly .. but I did not find a closed cursor!

please help me with this.

thanks

+4
source share
2 answers

Silverlight does not support real user cursors. The best you can do is move the image about the image as you move the mouse.

+3
source

To set the cursor from the embedded resource file, see the MSDN example in the documentation. It could be a .cur file.

I can not help with two .cur files.

-1
source

All Articles