Mega Code Archive

 
Categories / VB.Net / WPF
 

LineGeometry for Path

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     x:Class="Microsoft.Samples.Graphics.RectangleExample"     WindowTitle="Example">   <Canvas>     <Path Stroke="Green" StrokeThickness="2" StrokeDashArray="5 2" Canvas.Top="20">       <Path.Data>         <GeometryGroup>           <LineGeometry StartPoint="10,10" EndPoint="130,30"></LineGeometry>                     <LineGeometry StartPoint="40,140" EndPoint="150,150"></LineGeometry>                  </GeometryGroup>       </Path.Data>     </Path>   </Canvas> </Page>