You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
643 B
C#

Multiple Line Segments
<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Path Fill="Aqua" Stroke="Cyan" StrokeThickness="4">
<Path.Data>
<PathGeometry>
<PathFigure StartPoint="120 60">
<LineSegment Point="240 250" />
<LineSegment Point="50 160" />
<LineSegment Point="240 120" />
<LineSegment Point="70 240" />
</PathFigure>
</PathGeometry>
</Path.Data>
</Path>
</Canvas>