A polyline is a collection of connected straight lines. The Polyline object represents a polyline shape and draws a polyline with the given points. The Points property represents the points in a polyline. The Stroke property sets the color and StrokeThickness represents the width of the line of a polyline.
Creating a Polyline
The Polyline element in XAML creates a polyline shape. The following code snippet creates a polyline by setting its Points property. The code also sets the black stroke of width 4.
The output looks like Figure 12.
Figure 12. A Polyline
The CreateAPolyline method listed in Listing 11 draws the same rectangle in Figure 12 dynamically.
Listing 11