C# Programming GraphicsPath December 2, 2009 kpark Leave a comment // Scribble using GraphicsPathprivate GraphicsPath curve = new GraphicsPath();curve.StartFigure();curve.AddLine(prevPos, currPos);e.Graphics.DrawPath(Pens.Black, curve); 1104952398.zip