C#重写Label类实现绘制箭头,矩形,圆形,菱形,三角形

本文介绍如何在WinForms中创建一个继承自Label的自定义控件CusLabel,用于直接绘制简单图形如箭头、菱形、三角形和圆形,避免了使用PS制作图片的步骤。通过设置Type属性,可以改变控件显示的图形,并且可以直接在工具箱中使用。
摘要由CSDN通过智能技术生成

在winform中,自己写了个继承自label的类,实现了一些简单图形的绘制,省的用这些小图标的时候还要用ps做图片再贴进去。

新建一个winforms程序,添加一个CusLabel.cs类,代码如下:

using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;

namespace TestCusLabel
{
    public class CusLabel : Label
    {
        private int _type = 0;
        public int Type
        {
            get { return _type; }
            set
            {
                _type = value;
            }
        }
        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            Graphics g = e.Graphics;
            SolidBrush brush = new SolidBrush(ForeColor);
            Pen pen = new Pen(brush,1);
            GraphicsPath path = new GraphicsPath();
            List <PointF> points = new List<PointF>();
            switch(Type)
            {
                case 0://箭头
                    {
                        points.Add(new PointF(0,Height*1.0f/3));
                        points.Add(new PointF(Width* 1.0f * 2 / 3,Height*1.0f/3));
                        points.Add(new PointF(Width* 1.0f * 2 / 3,0));
                        points.Add(new PointF(Width, Height * 1.0f / 2));
                        points.Add(new PointF(Width * 1.0f * 2 / 3, Height));
                        points.Add(new PointF(Width * 1.0f * 2 / 3, Height * 1.0f*2 / 3));
                        points.Add(new PointF(0, Height * 1.0f*2 / 3));
                        points.Add(new PointF(0, Height * 1.0f / 3));
                    }
                    break;
                case 1://菱形
                    {
                        points.Add(new PointF(0,Height*1.0f/2));
                        points.Add(new PointF(Width * 1.0f / 2,0));
                        points.Add(new PointF(Width, Height * 1.0f / 2));
                        points.Add(new PointF(Width * 1.0f / 2,Height));
                        points.Add(new PointF(0,Height*1.0f/2));
                    }
                    break;
                case 2://三角形
                    {
                        points.Add(new PointF(Width * 1.0f / 2, 0));
                        points.Add(new PointF(Width,Height));
                        points.Add(new PointF(0, Height));
                        points.Add(new PointF(Width * 1.0f / 2, 0));
                    }
                    break;
                case 3://圆形
                    {
                        g.FillEllipse(brush,new Rectangle(0,0,Width,Height));
                    }
                    break;
                case 4://矩形
                    {
                        g.FillRectangle(brush,new Rectangle(0, 0, Width, Height));
                    }
                    break;
                default:
                    break;
            }
            if(Type==0|| Type==1|| Type==2)
            {
                if (points.Count > 0)
                {
                    path.AddPolygon(points.ToArray());
                    g.FillPath(brush, path);
                }
            }
            brush.Dispose();
        }
    }
}

然后重新生成程序,就能在工具箱栏看到自己重写的类了,直接可以拖动到form窗口使用,如下:

 同时,可以再属性栏看到我们在CusLabel类中添加的Type属性

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

GreenHandBruce

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值