C# 在“墨水演示器”中使用笔划绘制圆和模糊线

C# 在“墨水演示器”中使用笔划绘制圆和模糊线,c#,xaml,windows-phone-8,drawing,blur,C#,Xaml,Windows Phone 8,Drawing,Blur,我可以增加或减少笔划的大小,但现在我想模糊笔划在墨水演示器上绘制的线或圆 到目前为止,我已经尝试: drawingCanvas.CaptureMouse(); _colorStroke = new Stroke(); _colorStroke.StylusPoints.Add(GetStylusPoint(e.GetPosition(drawingCanvas))); _colorStroke.DrawingAttributes.Color = colorPicked.Color; _color

我可以增加或减少笔划的大小,但现在我想模糊笔划在墨水演示器上绘制的线或圆

到目前为止,我已经尝试:

drawingCanvas.CaptureMouse(); _colorStroke = new Stroke();
_colorStroke.StylusPoints.Add(GetStylusPoint(e.GetPosition(drawingCanvas)));
_colorStroke.DrawingAttributes.Color = colorPicked.Color;
_colorStroke.DrawingAttributes.Height= drawingCanvas.Strokes.Add(_colorStroke);

到目前为止你试过什么?在发布问题时没有显示出之前的合理努力是不礼貌的。您是否正在为Windows Phone 8制作应用程序?如果是,请检查此应用程序,它有一些使用笔划的工具。你知道了。好的,我已经把你的代码编辑成你的问题了。为了将来的参考,请使用更新的代码和详细信息编辑您的问题,而不是将其放入注释中。