Windows Phone Mango:使用各种画笔选项制作绘图应用程序

时间:2012-11-18 16:57:23

标签: c# windows-phone-7 drawing paint

我正在尝试制作一个绘图应用。目的很简单。让用户在画布上绘制一些东西,使用各种画笔选项,如方形画笔,远刷,铅笔画笔,以及更多像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;

现在我想要一些自定义画笔选项,让用户使用它进行绘制。如何实现? 提前谢谢。

1 个答案:

答案 0 :(得分:1)

Square,Pencil等仅仅是用作画笔的自定义图像模式。使用ImageBrush