CSharp examples for System.Drawing.Drawing2D:GraphicsPath
Create Round Rect
using System.Windows.Forms; using System.Drawing.Drawing2D; using System.Drawing; using System;// ww w . ja v a 2 s .c om public class Main{ public static GraphicsPath CreateRoundRect(RectangleF r, float r1, float r2, float r3, float r4) { float x = r.X; float y = r.Y; float width = r.Width; float height = r.Height; GraphicsPath path = new GraphicsPath(); path.AddBezier(x, y + r1, x, y, x + r1, y, x + r1, y); path.AddLine(x + r1, y, (x + width) - r2, y); path.AddBezier((x + width) - r2, y, x + width, y, x + width, y + r2, x + width, y + r2); path.AddLine((float)(x + width), (float)(y + r2), (float)(x + width), (float)((y + height) - r3)); path.AddBezier((float)(x + width), (float)((y + height) - r3), (float)(x + width), (float)(y + height), (float)((x + width) - r3), (float)(y + height), (float)((x + width) - r3), (float)(y + height)); path.AddLine((float)((x + width) - r3), (float)(y + height), (float)(x + r4), (float)(y + height)); path.AddBezier(x + r4, y + height, x, y + height, x, (y + height) - r4, x, (y + height) - r4); path.AddLine(x, (y + height) - r4, x, y + r1); return path; } }