Yes. You must use the label next to the mouse position. just try the following codes:
private void pictureBox1_MouseEnter(object sender, EventArgs e)
{
pictureBox1.Cursor = Cursors.WaitCursor;
Label lb = new Label();
lb.Location = new Point(MousePosition.X-this.Left,MousePosition.Y-this.Top);
lb.Text = "Your Info";
this.Controls.Add(lb);
}
source
share