Mega Code Archive

 
Categories / VB.Net / WPF
 

A Path based on Path Data, PathGeometry and LineSegment

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"       HorizontalAlignment="Stretch" VerticalAlignment="Stretch">         <Path Fill="Cyan" Stroke="Black">           <Path.Data>             <PathGeometry>               <PathGeometry.Figures>                 <PathFigure StartPoint="0,0" IsClosed="True">                   <PathFigure.Segments>                     <LineSegment Point="50,0" />                     <LineSegment Point="50,50" />                     <LineSegment Point="100,50" />                   </PathFigure.Segments>                 </PathFigure>               </PathGeometry.Figures>             </PathGeometry>           </Path.Data>         </Path> </Page>