C# Form's background image as pictureBox parent? -


i have picturebox transparency. found out can use picturebox.parent set parent image, works when parent picturebox. if want form's background image picturebox's parent?

   picturebox1.parent = picturebox2; //works fine (of course if there pbox2)    picturebox1.parent = form1;  //??? magic goes here 

if understood well, want background transparent. if so, use:

picturebox1.backcolor = color.transparent; 

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -