如何:创建椭圆弧

此示例演示如何绘制椭圆弧形。若要创建椭圆弧形,请使用 PathGeometryPathFigureArcSegment 类。

示例

在以下示例中,椭圆弧从 (10,100) 绘制到 (200,100)。 弧线的 Size 为 100 乘 50 个与设备无关的像素,RotationAngle 为 45 度,IsLargeArc 设置为 trueSweepDirectionCounterclockwise

在 Extensible Application Markup Language (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>

此示例摘自一个更大的示例。 有关完整示例,请参阅几何示例

另请参阅