gpt4 book ai didi

vb.net Picture box with .png with a transparent background loaded in it?

转载 作者:行者123 更新时间:2023-12-05 08:59:31 25 4
gpt4 key购买 nike

我有一个名为 donkey1.png 的 .png 文件 - 它具有透明背景,我已将其加载到名为 pcbDonkey1 的图片框 - 我已更改图片框的属性以使其背景色透明 - 这不起作用仍然越过另一张图片并具有白色背景。

我听说过使用 GDI 绘制此图像,因此它将具有透明图像并且能够在没有白色背景的情况下跨越图像。

你会怎么做?

谢谢

最佳答案

只需将背景图片设置为前景图片框的父级,透明度就可以工作,无需任何额外编码

     With PictureBox1

.Image = My.Resources._00_lichaam
.SizeMode = PictureBoxSizeMode.Zoom
End With
With PictureBox2
.Parent = PictureBox1
.Image = My.Resources._01_Hoofd
.SizeMode = PictureBoxSizeMode.Zoom
.BackColor = Color.Transparent
End With

这应该行得通

关于vb.net Picture box with .png with a transparent background loaded in it?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14281370/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com