共用方式為


HOW TO:建立橢圓弧形

更新:2007 年 11 月

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

範例

在下列範例中,會從 (10,100) 繪製橢圓弧形至 (200,100)。此弧形的 Size 為 100 x 50 與裝置無關 (Device-Independent) 的像素、RotationAngle 為 45 度角、IsLargeArc 設定為 true,以及 SweepDirectionCounterclockwise

xaml

在可延伸標記語言 (XAML) 中,您可以使用屬性語法來描述路徑。

<Path Stroke="Black" StrokeThickness="1"  
  Data="M 10,100 A 100,50 45 1 0 200,100" />

xaml

(請注意,此屬性語法實際上會建立 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>

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

請參閱

工作

HOW TO:建立二次方貝茲曲線

HOW TO:建立三次方貝茲曲線