将自定义用户控件的背景颜色更改为透明
我正在用 c# 构建一个自定义用户控件,该控件的外观是椭圆形,但可以使用默认颜色看到该控件的角。
我认为解决此问题的最佳方法是使控件的背景色透明,但如果我在属性中这样做则不起作用。
I am building a custom user control in c#, and the look of the control is an elipse, but the corners of the control can be seen with the default color.
I think that the best way to solve this is making the backcolor of the control transparent, but if i do it in properties doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在控件的构造函数中,尝试添加对
SetStyle(ControlStyles.SupportsTransparentBackColor)
的调用In the control's constructor, try adding a call to
SetStyle(ControlStyles.SupportsTransparentBackColor)