Windows.UI.Xaml.Shapes.Polyline
June 22, 2022 · View on GitHub
-description
Draws a series of connected straight lines.
-xaml-syntax
<Polyline .../>
-remarks
-examples
This example shows how to use a Polyline to create a closed triangle.
<Canvas>
<Polyline Points="50,25 0,100 100,100 50,25"
Stroke="Blue" StrokeThickness="10"
Canvas.Left="75" Canvas.Top="50" />
</Canvas>