程序不骗人,往往是我们自己。 ------解决方案-------------------- var g = CreateGraphics();
g.DrawPath(new Pen(Color.Black, 3), gPath);
var path1 = new GraphicsPath(gPath.PathPoints, Enumerable.Repeat((byte)1, gPath.PointCount).ToArray());
g.FillPath(new SolidBrush(Color.Pink), path1);