Thanks for the answers that I understood. What I wanted to do was that when I crossed a certain area, another image for that area would appear just like a tool tip. So after some research, I figured out how to create my own class of prompts.
here is an example.
public partial class Form1 : Form { public Form1() { InitializeComponent(); CustomToolTip tip = new CustomToolTip(); tip.SetToolTip(button1, "text"); tip.SetToolTip(button2, "writing"); button1.Tag = Properties.Resources.pelican;
}
source share