I have a background picturebox and TONS of pictureboxes on the background, but how could I make the background for the pictureboxes the same as the normal background?
Asked
Active
Viewed 661 times
0
-
what do you mean by normal background.? – Rajaprabhu Aravindasamy Mar 25 '13 at 12:48
-
normal background means the background picturebox – user1608730 Mar 25 '13 at 13:06
-
so you want to add a background for the `picbox1` as same as the image of `picbox2`? – Rajaprabhu Aravindasamy Mar 25 '13 at 13:14
-
It is automatic when you add the pbs to the background one. The designer won't let you do this since a picture box is not a container control. So you'll have to write the Controls.Add() call in your code. Or make it simple by avoiding the background pb and setting the form's BackgroundImage property. – Hans Passant Mar 25 '13 at 13:23
-
no, I want that the background of picbox1..2..15 to be the continuing of the background picturebox. @Hans Passant could you write me some code so I can figure it out, please? – user1608730 Mar 25 '13 at 13:24
-
Same as [this answer](http://stackoverflow.com/a/9387562/17034) – Hans Passant Mar 25 '13 at 13:27