国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#畫圓角矩形的方法

2020-01-24 01:52:34
字體:
來源:轉載
供稿:網友

本文實例講述了C#畫圓角矩形的方法。分享給大家供大家參考。具體實現方法如下:

protected void Page_Load(object sender, EventArgs e){ Bitmap bm = new Bitmap(800, 600); Graphics g = Graphics.FromImage(bm); g.FillRectangle(Brushes.White,new Rectangle(0,0,800,600)); FillRoundRectangle(g,Brushes.Plum,new Rectangle(100, 100, 100, 100), 8); DrawRoundRectangle(g, Pens.Yellow,new Rectangle(100, 100, 100, 100), 8); bm.Save(Response.OutputStream, ImageFormat.Jpeg); g.Dispose(); bm.Dispose();}public static void DrawRoundRectangle(Graphics g,Pen pen,Rectangle rect, int cornerRadius){ using (GraphicsPath path = CreateRoundedRectanglePath(rect, cornerRadius)) {  g.DrawPath(pen, path); }}public static void FillRoundRectangle(Graphics g, Brush brush,Rectangle rect, int cornerRadius){ using (GraphicsPath path = CreateRoundedRectanglePath(rect, cornerRadius)) {  g.FillPath(brush, path); }}internal static GraphicsPath CreateRoundedRectanglePath(Rectangle rect, int cornerRadius){ GraphicsPath roundedRect = new GraphicsPath(); roundedRect.AddArc(rect.X, rect.Y, cornerRadius * 2, cornerRadius * 2, 180, 90); roundedRect.AddLine(rect.X + cornerRadius, rect.Y, rect.Right - cornerRadius * 2, rect.Y); roundedRect.AddArc(rect.X + rect.Width - cornerRadius * 2, rect.Y, cornerRadius * 2, cornerRadius * 2, 270, 90); roundedRect.AddLine(rect.Right, rect.Y + cornerRadius * 2, rect.Right, rect.Y + rect.Height - cornerRadius * 2); roundedRect.AddArc(rect.X + rect.Width - cornerRadius * 2, rect.Y + rect.Height - cornerRadius * 2, cornerRadius * 2, cornerRadius * 2, 0, 90); roundedRect.AddLine(rect.Right - cornerRadius * 2, rect.Bottom, rect.X + cornerRadius * 2, rect.Bottom); roundedRect.AddArc(rect.X, rect.Bottom - cornerRadius * 2, cornerRadius * 2, cornerRadius * 2, 90, 90); roundedRect.AddLine(rect.X, rect.Bottom - cornerRadius * 2, rect.X, rect.Y + cornerRadius * 2); roundedRect.CloseFigure(); return roundedRect;}

希望本文所述對大家的C#程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 山西省| 乌鲁木齐市| 鸡西市| 巴林左旗| 中西区| 台安县| 黎平县| 绥芬河市| 汉中市| 肥东县| 武山县| 浮山县| 米易县| 军事| 庄河市| 浦北县| 安阳市| 柞水县| 黑河市| 方山县| 阜康市| 永兴县| 武乡县| 永福县| 秦皇岛市| 崇明县| 米泉市| 当雄县| 屯门区| 额敏县| 墨脱县| 信阳市| 东乡族自治县| 澄城县| 江川县| 寻甸| 忻城县| 东光县| 营山县| 乌恰县| 黔东|