博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
圆角Panel
阅读量:5827 次
发布时间:2019-06-18

本文共 2636 字,大约阅读时间需要 8 分钟。

using System;using System.Collections.Generic;using System.ComponentModel;using System.Diagnostics;using System.Text;using System.Windows.Forms;using System.Drawing.Drawing2D;using System.Drawing;namespace POS.Controls{    public partial class PosPanel : Panel    {        public PosPanel()        {            InitializeComponent();        }        private int mMatrixRound = 8;        private Color mBack;        public Color Back        {            get { return mBack; }            set            {                if (value == null)                {                    mBack = Control.DefaultBackColor;                }                else                {                    mBack = value;                }                base.Refresh();            }        }        public int MatrixRound        {            get { return mMatrixRound; }            set            {                mMatrixRound = value;                base.Refresh();            }        }         private GraphicsPath CreateRound(Rectangle rect, int radius)        {            GraphicsPath roundRect = new GraphicsPath();            //顶端             roundRect.AddLine(rect.Left + radius - 1, rect.Top - 1, rect.Right - radius, rect.Top - 1);            //右上角             roundRect.AddArc(rect.Right - radius, rect.Top - 1, radius, radius, 270, 90);            //右边             roundRect.AddLine(rect.Right, rect.Top + radius, rect.Right, rect.Bottom - radius);            //右下角            roundRect.AddArc(rect.Right - radius, rect.Bottom - radius, radius, radius, 0, 90);            //底边             roundRect.AddLine(rect.Right - radius, rect.Bottom, rect.Left + radius, rect.Bottom);            //左下角             roundRect.AddArc(rect.Left - 1, rect.Bottom - radius, radius, radius, 90, 90);            //左边             roundRect.AddLine(rect.Left - 1, rect.Top + radius, rect.Left - 1, rect.Bottom - radius);            //左上角             roundRect.AddArc(rect.Left - 1, rect.Top - 1, radius, radius, 180, 90);            return roundRect;        }        protected override void OnPaint(PaintEventArgs e)        {            int width = base.Width - base.Margin.Left - base.Margin.Right;            int height = base.Height - base.Margin.Top - base.Margin.Bottom;            Rectangle rec = new Rectangle(base.Margin.Left, base.Margin.Top, width, height);            GraphicsPath round = CreateRound(rec, mMatrixRound);            e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;            e.Graphics.FillPath((Brush)(new SolidBrush(mBack)), round);        }     }}

使用的时候背景颜色设为透明,Back是前景色,设一个不同的颜色。就OK了

转载于:https://www.cnblogs.com/wpcnblog/p/5016219.html

你可能感兴趣的文章
OSI七层模型 -tcp/ip协议
查看>>
首次公开!单日600PB的计算力--阿里巴巴EB级大数据平台的进击
查看>>
一文弄懂“分布式锁”,一直以来你的选择依据正确吗?
查看>>
ubuntu-16.04 qemu 嵌入式arm模式
查看>>
Swift 中的错误与异常
查看>>
JSBridge的原理
查看>>
HTTP状态码
查看>>
swift 属性观察器
查看>>
当Koin撞上ViewModel
查看>>
Data-Mediator入门系列2-2
查看>>
springboot微服务使用shiro遇到的坑
查看>>
护航Lazada双11购物节 阿里云CDN全球化火力全开
查看>>
Mybatis去xml化:我再也不想写xml了
查看>>
Java架构-什么决定了技术人员的薪水?
查看>>
iOS开发之runtime:static_init()讲解
查看>>
架构简明指南
查看>>
git 小札 - 流程总览
查看>>
Swift中建立桥接头文件
查看>>
[编程题] 制造回文
查看>>
使用Grab的实验平台进行混沌实验编排
查看>>