首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

在.net winform中创建圆角容器

在.NET WinForm中创建圆角容器,可以通过自定义控件来实现。以下是一个简单的示例代码:

代码语言:csharp
复制
using System;
using System.Drawing;
using System.Windows.Forms;

public class RoundedContainer : Panel
{
    private int _cornerRadius = 10;

    public int CornerRadius
    {
        get { return _cornerRadius; }
        set { _cornerRadius = value; Invalidate(); }
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        base.OnPaint(e);

        using (var graphicsPath = new System.Drawing.Drawing2D.GraphicsPath())
        {
            graphicsPath.AddArc(0, 0, CornerRadius, CornerRadius, 180, 90);
            graphicsPath.AddArc(Width - CornerRadius, 0, CornerRadius, CornerRadius, 270, 90);
            graphicsPath.AddArc(Width - CornerRadius, Height - CornerRadius, CornerRadius, CornerRadius, 0, 90);
            graphicsPath.AddArc(0, Height - CornerRadius, CornerRadius, CornerRadius, 90, 90);

            Region = new Region(graphicsPath);
        }

        using (var pen = new Pen(Color.Gray, 2))
        {
            e.Graphics.DrawArc(pen, 0, 0, CornerRadius, CornerRadius, 180, 90);
            e.Graphics.DrawArc(pen, Width - CornerRadius, 0, CornerRadius, CornerRadius, 270, 90);
            e.Graphics.DrawArc(pen, Width - CornerRadius, Height - CornerRadius, CornerRadius, CornerRadius, 0, 90);
            e.Graphics.DrawArc(pen, 0, Height - CornerRadius, CornerRadius, CornerRadius, 90, 90);
        }
    }
}

这个控件继承自Panel,可以在设计器中直接拖放,并且可以设置CornerRadius属性来调整圆角的大小。在OnPaint方法中,我们使用System.Drawing.Drawing2D.GraphicsPath来绘制圆角矩形,并且使用Region属性来设置控件的形状。最后,我们使用Graphics.DrawArc方法来绘制边框。

这个控件可以直接在.NET WinForm项目中使用,无需引用其他库或者组件。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

10分3秒

65-IOC容器在Spring中的实现

5分3秒

22.在Eclipse中创建Maven版的Web工程.avi

6分22秒

17-在idea中能够创建mybatis核心配置文件和映射文件的模板

6分49秒

008_尚硅谷_Scala_在IDE中编写HelloWorld(一)_项目创建和环境配置

7分53秒

day22/上午/425-尚硅谷-尚融宝-创建通用dto以及在微服务中引入和配置RabbitMQ

3分17秒

【PVE系列】零基础PVE中系统镜像上传以及虚拟机的创建(无坑版)

13分41秒

05-尚硅谷-在Eclipse中使用Maven-创建Java工程

9分27秒

06-尚硅谷-在Eclipse中使用Maven-创建Web工程

7分39秒

07-尚硅谷-在Eclipse中使用Maven-创建父工程

8分23秒

10-尚硅谷-在Idea中使用Maven-创建Java工程

6分17秒

11-尚硅谷-在Idea中使用Maven-创建Web工程

18分35秒

14-尚硅谷-在Eclipse中使用Git-创建本地库

领券