Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a information image

I am working on a program that i want to have a information image that when you mouse over it, a ToolTip shows up, what my problem is is that the PictureBox that has the information image on it has a border like this:

PictureBox Border

Does anyone know how to make the border on the PictureBox go away?

like image 988
Dozer789 Avatar asked Dec 11 '25 14:12

Dozer789


1 Answers

I think you can simply do this:

picture.BorderStyle = BorderStyle.None;
like image 96
Leniel Maccaferri Avatar answered Dec 14 '25 04:12

Leniel Maccaferri