1

How would a framework element get moved and behave as a cursor in real time ? For example, if I added an event listener for mouse move, and moved an image than presents the virtual cursor, the moved image will be noticed as following the mouse.

Our app will have more than moving cursor. Whats' the most efficient way to move a cursor size image inside a window ?

Rodrigo Guedes
  • 1,169
  • 2
  • 13
  • 27
simo
  • 23,342
  • 38
  • 121
  • 218

1 Answers1

0

Try this:

Cursor x = new Cursor("yourCursorPath");
this.Cursor = x;
Rodrigo Guedes
  • 1,169
  • 2
  • 13
  • 27
  • I need a custom cursor solution as I will be moving two cursors at the same time .. – simo Sep 13 '12 at 10:34