Mega Code Archive

 
Categories / C# / WPF
 

Polyline and Polyline Points

<Window x:Class="WpfApplication1.ShapesWindow"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     Title="ShapesWindow" Height="160" Width="400">     <Canvas>         <Polyline Stroke="Brown" StrokeThickness="4" StrokeDashArray="1 1" Canvas.Left="119" Canvas.Top="170" >             <Polyline.Points>                 <Point X="0" Y="0"/>                 <Point X="30" Y="30"/>                 <Point X="60" Y="20"/>                 <Point X="100" Y="50"/>             </Polyline.Points>         </Polyline>     </Canvas> </Window>