I need to get mouse position relatively to my listbox, in event handler i get window relative coordinates, how to translate it into control relative?
EDIT:
private void OnMouseMove(object sender, MouseEventArgs e)
{
Point mousePos = e.GetPosition(null);
...
}
So, it looks like it is mouse position i need, but really it could change for the moment.