GroupBox 控件中的圆角
如何在表单中的 GroupBox 中获得圆角?属性选项卡里有选项吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在表单中的 GroupBox 中获得圆角?属性选项卡里有选项吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
当您的视觉样式启用时应用程序和
FlatStyle
属性设置为“System”,组框看起来有稍微的圆角,但可能不超过 3 到 5 度。所以我想这不是你要找的。不幸的是,没有内置的方法来自定义其圆度。唯一真正的解决方案是使用自定义控件。您可以继承现有的
GroupBox
控件并重写其Paint
事件来自己绘制边框,或者您可以使用以下现有控件之一:When visual styles are enabled for your application and the
FlatStyle
property is set to "System", the group boxes look like they have slightly rounded corners, but it's probably no more than 3 to 5 degrees. So I suppose this is not what you're looking for.Unfortunately, there's no built-in way to customize its degree of roundedness. The only real solution is to use a custom control. You can either inherit off of the existing
GroupBox
control and override itsPaint
event to draw the borders yourself, or you can use one of these existing controls:看看这个开源控件:
http://roundedgroupbox.codeplex.com/
Take a look at this open source controls:
http://roundedgroupbox.codeplex.com/