所以我有一个groupBox,里面有一张图片1。所以我需要在图片1上添加较小的图片2,但图片2的背景不能与图片1重叠。
我试过这种方法:
InitializeComponent();
groupBox.Controls.Add(pictureBox2);
pictureBox2.Location = new Point(0, 0);
pictureBox2.BackColor = Color.Transparent;
和这个
InitializeComponent();
pictureBox1.Controls.Add(pictureBox2);
pictureBox2.Location = new Point(0, 0);
pictureBox2.BackColor = Color.Transparent;
但都不起作用。
撒科打诨
红糖糍粑
相关分类