I am making an application in C# .NET. I have 8 picture boxes in it. I used PNG images with transparent background but in my form it is not transparent when it comes above a
Try using an ImageList
ImageList imgList = new ImageList; imgList.TransparentColor = Color.White;
Load the image like this:
picturebox.Image = imgList.Images[img_index];