用边框绘制折线

时间:2014-05-29 08:26:44

标签: c# wpf polyline

我正在使用WPF绘制一定宽度的折线,示例代码如下:

  

DrawingContext.DrawGeometry(Brushes.Yellow,new Pen(Brush,   polylineWidth),streamGeometry);

其中streamGeometry是折线的几何。 结果看起来像: enter image description here

但是,我想在折线周围添加边框,如下所示:

enter image description here enter image description here

我知道我可以绘制两条宽度不同的折线(一条用于黑色背景,另一条用于我想渲染的颜色) 我只是想知道是否有任何API或一些优雅的方法来实现这一目标?

1 个答案:

答案 0 :(得分:2)

实现这一目标只需要一个额外的步骤。从折线创建新形状(包含折线的粗细)。使用:

var pathGeometry = streamGeometry.GetWidenedPathGeometry (new Pen(Brushes.Black, polylineWidth));

然后致电

DrawingContext.DrawGeometry(Brushes.Yellow, new Pen(strokeBrush, strokeThickness), pathGeometry);

你已经完成了。