视觉工作室和 Alpha 背景
看到这个问题问了很多,但似乎找不到答案。所以就是这样。您可以使用带有 Alpha 通道的 PNG 作为 VB 应用程序的背景图像吗?我不关心改变应用程序矩形的形状就可以了。他们只想使用背后有阴影的角色作为应用程序的背景。
Seen this question asked a lot but can't seem to find an answer. So here it is. Can you use a PNG with an alpha channel as the background image for a VB app? I don't care about changing the shape of the app rectangle is fine. They just want to use a character with a drop shadow behind him as the background for the app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 WinForms 中,您需要制作一个分层窗口。
在 WPF 中,您需要将
AllowsTransparency
设置为 true,并将WindowStyle
设置为None
。In WinForms, you'll need to make a layered window.
In WPF, you'll need to set
AllowsTransparency
to true andWindowStyle
toNone
.