How to make picturebox transparent?

后端 未结 6 522
故里飘歌
故里飘歌 2020-11-27 16:03

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

6条回答
  •  旧巷少年郎
    2020-11-27 16:33

    Try using an ImageList

    ImageList imgList = new ImageList;
    
    imgList.TransparentColor = Color.White;
    

    Load the image like this:

    picturebox.Image = imgList.Images[img_index];
    

提交回复
热议问题