How to make an informational image

I am working on a program in which I want to get an informational image that when you hover over it with the mouse it appears ToolTip

that my problem is that PictureBox

which has an informational image on it has a border like this:

PictureBox Border

Does anyone know how to remove the border from PictureBox

?

+3


source to share


1 answer


I think you can just do this:



picture.BorderStyle = BorderStyle.None;

      

+6


source







All Articles