programming-examples/c-sharp/Others/Polyline by Points.cs
2019-11-15 12:59:38 +01:00

11 lines
336 B
C#

Polyline by Points
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Polyline Stroke="Aqua" Points="0,0 10,40 15,0 20,60 25,25 35,30 45,0 43,60 48,40 100,30" />
</Page>