剛好用到這個功能,看了好些例子。我就不明白,簡單的一個事,一些文章里的代碼寫的那個長啊,還讓人看么。
精簡后,就其實一點,只要有paint事件的組件,都可畫圓角,沒有的外面套一個panel就行了。
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Drawing2D; using System.Linq; using System.Text; using System.Windows.Forms; namespace Gid_1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Draw(Rectangle rectangle, Graphics g, int _radius, bool cusp, Color begin_color, Color end_color) { int span = 2; //抗鋸齒 g.SmoothingMode = SmoothingMode.AntiAlias; //漸變填充 LinearGradientBrush myLinearGradientBrush = new LinearGradientBrush(rectangle, begin_color, end_color, LinearGradientMode.Vertical); //畫尖角 if (cusp) { span = 10; PointF p1 = new PointF(rectangle.Width - 12, rectangle.Y + 10); PointF p2 = new PointF(rectangle.Width - 12, rectangle.Y + 30); PointF p3 = new PointF(rectangle.Width, rectangle.Y + 20); PointF[] ptsArray = { p1, p2, p3 }; g.FillPolygon(myLinearGradientBrush, ptsArray); } //填充 g.FillPath(myLinearGradientBrush, DrawRoundRect(rectangle.X, rectangle.Y, rectangle.Width - span, rectangle.Height-1, _radius)); } public static GraphicsPath DrawRoundRect(int x, int y, int width, int height, int radius) { //四邊圓角 GraphicsPath gp = new GraphicsPath(); gp.AddArc(x, y, radius, radius, 180, 90); gp.AddArc(width - radius, y, radius, radius, 270, 90); gp.AddArc(width - radius, height - radius, radius, radius, 0, 90); gp.AddArc(x, height - radius, radius, radius, 90, 90); gp.CloseAllFigures(); return gp; } private void panel1_Paint(object sender, PaintEventArgs e) { Draw(e.ClipRectangle, e.Graphics, 18,true, Color.FromArgb(90, 143, 0), Color.FromArgb(41, 67, 0)); base.OnPaint(e); Graphics g = e.Graphics; g.DrawString("其實我是個Panel", new Font("微軟雅黑", 9, FontStyle.Regular), new SolidBrush(Color.White), new PointF(10, 10)); } private void panel2_Paint(object sender, PaintEventArgs e) { Draw(e.ClipRectangle, e.Graphics, 18, false, Color.FromArgb(113, 113, 113), Color.FromArgb(0, 0, 0)); base.OnPaint(e); Graphics g = e.Graphics; g.DrawString("其實我是個Panel", new Font("微軟雅黑", 9, FontStyle.Regular), new SolidBrush(Color.White), new PointF(10, 10)); } private void button1_Paint(object sender, PaintEventArgs e) { Draw(e.ClipRectangle, e.Graphics, 18, false, Color.FromArgb(0, 122, 204), Color.FromArgb(8, 39, 57)); base.OnPaint(e); Graphics g = e.Graphics; g.DrawString("其實我是個按鈕", new Font("微軟雅黑", 9, FontStyle.Regular), new SolidBrush(Color.White), new PointF(10, 10)); } private void label1_Paint(object sender, PaintEventArgs e) { Draw(e.ClipRectangle, e.Graphics, 18, false, Color.FromArgb(210, 210, 210), Color.FromArgb(242, 242, 242)); base.OnPaint(e); Graphics g = e.Graphics; g.DrawString("其實我是Label", new Font("微軟雅黑", 9, FontStyle.Regular), new SolidBrush(Color.Black), new PointF(10, 10)); } } }
int _radius 圓的度數
bool cusp 畫不畫尖角
Color begin_color, Color end_color 漸變色的起始和結束顏色
private void Draw(Rectangle rectangle, Graphics g, int _radius, bool cusp, Color begin_color, Color end_color)
{.......}
圓角按鈕要設置
否則4個角還有顏色。
皆可畫圓。