Hi,
I am planning to override the mouse movement to discrete steps so that i can get a coarser movement of the mouse for easier click of objects.
However, I am not getting any trigger in the OnMouseMove event. Anybody know why? My mouse is moving on a Form with a Picturebox on it.
ET
I am planning to override the mouse movement to discrete steps so that i can get a coarser movement of the mouse for easier click of objects.
However, I am not getting any trigger in the OnMouseMove event. Anybody know why? My mouse is moving on a Form with a Picturebox on it.
Code:
protected override void OnMouseMove(MouseEventArgs e)
{
base.OnMouseMove(e);
}
Comment