3

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?

Dozer789
  • 1,980
  • 2
  • 23
  • 43

1 Answers1

6

I think you can simply do this:

picture.BorderStyle = BorderStyle.None;
Leniel Maccaferri
  • 100,159
  • 46
  • 371
  • 480