我正在尝试制作一个绘图应用。目的很简单。让用户在画布上绘制一些东西,使用各种画笔选项,如方形画笔,远刷,铅笔画笔,以及更多像Android市场中可用的任何其他绘图应用程序。目前我可以让用户使用以下代码绘制平滑曲线:
currentPoint = e.GetPosition(this.canvas);
Line line = new Line() { X1 = currentPoint.X, Y1 = currentPoint.Y, X2 = oldPoint.X, Y2 = oldPoint.Y };
line.Stroke = new SolidColorBrush(Colors.Purple);
line.StrokeThickness = 2;
this.drawnImage.Add(line);
this.canvas.Children.Add(line);
oldPoint = currentPoint;
现在我想要一些自定义画笔选项,让用户使用它进行绘制。如何实现? 提前谢谢。