I have a PictureBox that has a map assigned to it (basically a list of Rectangle objects). Now I want to make it such if user moves the mouse over this picturebox, and if the mouse is over a rectangle that is existing in the list, a tooltip pop up and show some information.
The mapping works fine, but problem is the ToolTip is going crazy and does not show up properly, it just continues poping up with any mouse move. How can I code it such it only pop up when the mouse is in the rectangle?
This is my code and down there you see the example!
private void pictureBoxPackageView_MouseMove(object sender, MouseEventArgs e)
{
if (PackageMap == null || PackageMap.Count == 0) return;
var point = new Point(e.X, e.Y);
foreach (var map in PackageMap)
{
if (map.Rectangle.Contains(point))
{
var tip = new ToolTip();
tip.ToolTipTitle = map.Pin.Group;
tip.Show("Result: " + map.Pin.Mk2Result, pictureBoxPackageView, point, 200);
break;
}
}
}
