I want to use an image or icon as a custom cursor in WPF app. What's the best way to do it?
|
|
|
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. |
|||||||||||
|
|
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 |
|||||||||
|
|
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). |
|||
|
|
|
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:
|
||||
|
|
|
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 |
|||
|
|
|
You could try this
|
||||
|
|
|
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:
|
|||
|
|
|
Make sure, that any GDI resource (for example bmp.GetHIcon) gets disposed. Otherwise you end up with a memory leak. The following code (extension method for icon) works perfectly for WPF. It creates the arrow cursor with a small icon on it's lower right. Remark: This code uses an icon to create the cursor. It does not use a current UI control. Matthias
|
||||
|
|
|
To use a custom cursor in XAML I altered the code Ben McIntosh provided slightly:
To use the cursor just reference to the resource:
|
|||
|
|
|
This is very nice, But I encountered black images. this one copies WYSIWYG. Please see Convert any control to a image (WPF) |
|||
|
|
