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
Post a Comment