Mega Code Archive

 
Categories / C# / WPF
 

Horizontal Line

<Window       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     x:Class="SDKSample.SampleViewer"     Title="  Examples" >    <Canvas>            <Path Stroke="Black" StrokeThickness="1">             <Path.Data>               <PathGeometry>                 <PathGeometry.Figures>                   <PathFigureCollection>                     <PathFigure StartPoint="100,50">                       <PathFigure.Segments>                         <PathSegmentCollection>                           <LineSegment Point="200,50" />                         </PathSegmentCollection>                       </PathFigure.Segments>                     </PathFigure>                   </PathFigureCollection>                 </PathGeometry.Figures>               </PathGeometry>             </Path.Data>           </Path>           </Canvas>  </Window>