我想要在另一张照片上方显示一张照片。所以我使用这个答案How to make picturebox transparent?。但是现在当我添加另一张图片(pictureBox3)时,它并没有透过第一张图片(pictureBox2)。 This is how it is look like - 不要注意第三张绿色图片。 pictureBox1是黑色的形状。 我的代码:
public Form1()
{
InitializeComponent();
Control[] controls = { pictureBox2, pictureBox3 };
pictureBox1.Controls.AddRange(controls);
pictureBox2.Location = new Point(95, 10);
pictureBox3.Location = new Point(150, 40);
pictureBox2.BackColor = Color.Transparent;
pictureBox3.BackColor = Color.Transparent;
}
如何使用所有图片进行转换?