PictureBox & groupbox question

  • Thread starter Thread starter the_grove_man
  • Start date Start date
T

the_grove_man

Let's say i have a tab control. And on one of the tabs is a fully
docked picture box with an image.

I also have a few groupboxes on top of this picture box. How can I
make the background image of the groupboxes fit into what is on the
picturebox.
 
Let's say i have a tab control. And on one of the tabs is a fully
docked picture box with an image.

I also have a few groupboxes on top of this picture box. How can I
make the background image of the groupboxes fit into what is on the
picturebox.

Maybe this would work:
groupBox.BackColor = System.Drawing.Color.Transparent;
 
Back
Top