Mega Code Archive

 
Categories / C# / WPF
 

Clockwise, IsLargeArc

<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">     <Path Stroke="Purple" StrokeThickness="3">         <Path.Data>             <PathGeometry>                 <PathFigure StartPoint="144 144">                     <ArcSegment Point="240 240" Size="144 96"                                 RotationAngle="45"                                 SweepDirection="ClockWise"                                 IsLargeArc="True" />                 </PathFigure>             </PathGeometry>         </Path.Data>     </Path> </Canvas>