The cursor in the AfterMoveCursor event refers to a cursor of the graph, not the mouse cursor. Use the static
MousePosition property on the Windows Forms Control class to get the coordinates of the mouse cursor. Note that this position is returned in screen coordinates. If you need the coordinates in the control client coordinates, you can pass the coordinates returned from MousePosition to the
PointToClient method on the waveform graph.
- Elton