Polyline


PolylineHierarchy: UIElement FrameworkElement Shape StretchableShape

Type: Shape

     <Polyline         Points="10,100 50,10 100,150"         Stroke="Black"         StrokeThickness="4" /> 

or:

     <Polyline         Stroke="Black"         StrokeThickness="4">         <Polyline.Points>            <Point X="10" Y="100" />            <Point X="50" Y="10" />            <Point X="100" Y="50" />         </Polyline.Points>     </Polyline> 

<Polyline .../> draws a series of connected lines (Figure 9-12). Because Polyline is not a closed shape, the Fill attribute has no effect, even if you close the shape. To draw a closed series of lines you can fill, use the Polygon shape.

Figure 9-12. Polyline


Attributes


Points (required)

A series of points describing the vertices of the Polyline. Points can be described in XAML as a space-delimited list of comma-separated x- and y-coordinate pairs as inline markup or as a series of Point elements.




XAML in a Nutshell
XAML in a Nutshell (In a Nutshell (OReilly))
ISBN: 0596526733
EAN: 2147483647
Year: 2007
Pages: 217

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net