Silverlight MouseMove: find missing points during a movement
Posted
by Jalfp
on Stack Overflow
See other posts from Stack Overflow
or by Jalfp
Published on 2010-06-11T05:18:01Z
Indexed on
2010/06/11
5:22 UTC
Read the original article
Hit count: 242
Silverlight
|mousemove
In an application in Silverlight I'm working on, I need to track the moves of the mouse. My problem is that using the MouseMove event, I don't have a continuous set of points if the user moves the mouse fast enough (if I add each point in a list I can have (10,10) en then (20,20)...)
I'd like to have ALL points where the mouse has been during the move. Do you have any idea ?
© Stack Overflow or respective owner