不规则的Windows窗体(C#)

前端之家收集整理的这篇文章主要介绍了不规则的Windows窗体(C#)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
最简单的方法是什么?托管代码是否可能?

谢谢你的时间。

this.BackgroundImage = //Image
this.FormBorderStyle = FormBorderStyle.None;
this.Width = this.BackgroundImage.Width;
this.Height = this.BackgroundImage.Height;
this.TransparencyKey = Color.FromArgb(0,255,0); //Contrast Color

这允许您基于图像创建表单,并使用透明度索引使其看起来好像格式不是矩形。

原文链接:https://www.f2er.com/windows/372595.html

猜你在找的Windows相关文章