J
Justin Carter
Hi. I am trying to save position and time data on users mouse
movements as they move between 2 targets. Saving the x-y position
data is not difficult using the AddLine method of a GraphicsPath
object. What I would love to do is make a new class inherited from
GraphicsPath and add time data to the AddLine method, but the
GraphicsPath class is sealed.
I am collecting this data for mouse clicks (MouseDown) using an
ArrayList holding a custom object consisting of Point and TimeSpan
variables. I could probably do the same thing for MouseMove with
GraphicsPath and TimeSpan, but am curious if anyone has any other
ideas.
Thanks,
Justin
(Oh, I'm using c#, but figured someone using vb might have done it.)
movements as they move between 2 targets. Saving the x-y position
data is not difficult using the AddLine method of a GraphicsPath
object. What I would love to do is make a new class inherited from
GraphicsPath and add time data to the AddLine method, but the
GraphicsPath class is sealed.
I am collecting this data for mouse clicks (MouseDown) using an
ArrayList holding a custom object consisting of Point and TimeSpan
variables. I could probably do the same thing for MouseMove with
GraphicsPath and TimeSpan, but am curious if anyone has any other
ideas.
Thanks,
Justin
(Oh, I'm using c#, but figured someone using vb might have done it.)