如何:创建椭圆弧
此示例演示如何绘制椭圆弧。若要创建椭圆弧,请使用 PathGeometry、PathFigure和 ArcSegment 类。
例
在以下示例中,椭圆弧从(10,100)绘制到(200,100)。 弧线的 Size 为 100 乘以 50 个与设备无关的像素、RotationAngle 为 45 度、IsLargeArc 设置为 true
和 SweepDirection 为 Counterclockwise。
在可扩展应用程序标记语言(XAML)中,可以使用属性语法描述路径。
<Path Stroke="Black" StrokeThickness="1"
Data="M 10,100 A 100,50 45 1 0 200,100" />
(请注意,此属性语法实际上创建了 StreamGeometry,即较轻量版本的 PathGeometry。有关详细信息,请参阅 路径标记语法 页。
在 XAML 中,还可以使用对象标记显式绘制椭圆弧。 以下内容等效于前面的 XAML 标记。
<Path Stroke="Black" StrokeThickness="1">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure StartPoint="10,100">
<PathFigure.Segments>
<PathSegmentCollection>
<ArcSegment Size="100,50" RotationAngle="45" IsLargeArc="True" SweepDirection="CounterClockwise" Point="200,100" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
此示例是较大示例的一部分。 有关完整示例,请参阅 几何图形示例。