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 |
||
|
|
|
|
You could try this
|
|||
|
|
|
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 |
||
|
|
