Bezier Curve with BezierSegment

image_pdfimage_print


   
      
        
        
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      HorizontalAlignment="Stretch" VerticalAlignment="Stretch">

        <Path Stroke="Black">
          <Path.Data>
            <PathGeometry>
                <PathFigure StartPoint="0,50">
                  <BezierSegment Point1="60,50" Point2="100,0" Point3="100,50" />
                </PathFigure>
            </PathGeometry>
          </Path.Data>
        </Path>

</Page>