Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 WinForms 中使用具有 alpha 通道透明度/不透明度的图像实现启动画面?
看看C# 中的 Per Pixel Alpha Blend
取决于你的图像是什么样的形状。它是你可以使用代码绘制的东西吗?如果是这样,您可以将表单绘制区域设置为形状,如下所示:
yourForm.Region = new Region(someShape);
例如,该形状可以是与您的图像具有相同形状的多边形。