What is the easiest way to draw an arrow at the end of a QuadraticBezierSegment ? The tricky part is getting the right rotation to handle the incoming line segment.
Any ideas on how to do this? Should I extend the PathSegment ?

I have this for drawing a simple bezier string.
<Path Stroke="Black" StrokeThickness="1">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure StartPoint="100,430">
<PathFigure.Segments>
<PathSegmentCollection>
<QuadraticBezierSegment Point1="150,250" Point2="250,300" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
source
share