I need to add a text line in a specified point of a windows form. In this form I draw something and I would like to describe the draw exactly where it is pointed.
Is there a way to add a tooltip in a specified point of a Form?
For example something like:
Point pt = new Point (490,567);
ToolTip tt = new ToolTip();
pt.ToolTip=tt;
Other ways I've tried:
1- Label class, but when I add the control with Controls.Add(label) the system restart execution of the draw, I don't know why.
2- TextBox class, but execution become quite slow when the program add the textbox.
If you have some suggestions also for these 2 other ways it will be so appreciated :)
thanks