将自定义用户控件的背景颜色更改为透明

发布于 2024-10-18 10:54:28 字数 105 浏览 0 评论 0原文

我正在用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

西瓜 2024-10-25 10:54:28

在控件的构造函数中,尝试添加对 SetStyle(ControlStyles.SupportsTransparentBackColor) 的调用

In the control's constructor, try adding a call to SetStyle(ControlStyles.SupportsTransparentBackColor)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文