共用方式為


如何:建立橢圓弧形

此範例顯示如何繪製橢圓形弧線。若要建立橢圓形弧線,請使用 PathGeometryPathFigureArcSegment 類別。

範例

在下列範例中,橢圓形弧線是從 (10,100) 繪製到 (200,100)。 弧線的 Size 為 100 x 50 個裝置獨立像素、RotationAngle 為 45 度、IsLargeArc 設定為 true,而且 SweepDirectionCounterclockwise

在 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>

這個範例是某完整範例的一部分。 如需完整範例,請參閱 Geometries 範例

另請參閱