Well, as the title says, how can I set an image or anything else as the mouse cursor. I know you can use the built in ones that are part of the Cursors class, but I was wondering if there's a way to use your own image (preferably without P/Invoke, but either way is fine.)

EDIT: I guess I didn't explain what I wanted clearly enough. I don't have any .cur files (are they easy to create?), I want to know if there's a way to take an image from disk (or wherever) and use that as the cursor. Ultimatley what I'd like would be to do something like this:

myForm.Cursor = new Cursor(Image.FromFile("foo.jpg"));

Possible?

link|improve this question

77% accept rate
Re the edit - perhaps see here : vgdotnet.org/forums/viewtopic.php?t=185 – Marc Gravell Jan 28 '09 at 23:14
feedback

4 Answers

up vote 5 down vote accepted

At the simplest, you just use:

form.Cursor = new Cursor(path);

But there are overloads to load from other sources (an unmanaged pointer, a raw stream, or a resx).

link|improve this answer
feedback

If you want some more information on how to create your own cursor resources then there is a good tutorial here. You should create your cursor file and embed it as a resource in your executable - easy in Visual Studio. This is tidier and more efficient than loading it from a separate file. You can then load it directly using the Cursor constructor that takes a resouce name.

link|improve this answer
feedback

First add the custom cursor to your project then it's pretty simple:

Cursor myCursor = new Cursor("custom.cur");

Then just assign it to your controls

someControl.cursor = myCursor
link|improve this answer
feedback

In addition to what mentioned above, you can do this:

Mouse.OverrideCursor = Cursors.Arrow;

and Cursors can be : AppStarting Arrow ArrowCD Cross Hand Help Pen UpArrow or others.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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