I want to use an image or icon as a custom cursor in WPF app. What's the best way to do it?
|
feedback
|
|
You have two basic options:
If you choose to load from a file, note that you need an absolute file-system path to use the On the other hand, specifying a cursor as a relative path when loading it using a XAML attribute does work, a fact you could use to get your cursor loaded onto a hidden control and then copy the reference to use on another control. I haven't tried it, but it should work. | |||||||||
feedback
|
|
Like Peter mentioned above, if you already have a .cur file, you can use it as an embedded resource by creating a dummy element in the resource section, and then referencing the dummy's cursor when you need it. For example, say you wanted to display non-standard cursors depending on the selected tool. Add to resources:
Example of embedded cursor referenced in code:
-Ben | |||||||
feedback
|
|
There is an easier way than managing the cursor display yourself or using Visual Studio to construct lots of custom cursors. If you have a Visual you can construct a Cursor from it using the following code:
Note that your Visual's size must be a standard cursor size (eg 16x16 or 32x32), for example:
It would be used like this:
Obviously your Visual could be an Note that details on the .cur file format can be found at ICO (file format). | |||
|
feedback
|
|
You could try this
| ||||
|
feedback
|
|
I know this topic is a few years old now, but yesterday I wanted to load a custom cursor file from the project resources and ran into similar problems. I searched the internet for a solution and didn't find what I needed: to set the
I stumbled on a nice way to do this and resolves my problem:
| ||||
|
feedback
|
|
A very easy way is to create the cursor within Visual Studio as a .cur file, and then add that to the projects Resources. Then just add the following code when you want to assign the cursor:
| |||
|
feedback
|
|
Also check out Scott Hanselman's BabySmash (www.codeplex.com/babysmash). He used a more "brute force" method of hiding the windows cursor and showing his new cursor on a canvas and then moving the cursor to were the "real" cursor would have been Read more here: http://www.hanselman.com/blog/DeveloperDesigner.aspx | |||
|
feedback
|