// Scribble using GraphicsPath
private GraphicsPath curve = new GraphicsPath();
curve.StartFigure();
curve.AddLine(prevPos, currPos);
e.Graphics.DrawPath(Pens.Black, curve);
// Scribble using GraphicsPath
private GraphicsPath curve = new GraphicsPath();
curve.StartFigure();
curve.AddLine(prevPos, currPos);
e.Graphics.DrawPath(Pens.Black, curve);