共用方式為


HOW TO:轉換幾何

更新:2007 年 11 月

下列範例將示範如何使用 Transform 屬性,將 RotateTransform 套用至 Geometry 物件。

範例

下列範例會使用 GeometryGroup,利用三個 Geometry 物件建立複合圖案,然後,使用 Transform 屬性旋轉幾何 45 度。

<Page  xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml">
  <Canvas>

    <!-- Displays the geometry. -->
    <Path Stroke="Black" StrokeThickness="1" Fill="#CCCCFF">
      <Path.Data>

        <!-- Creates a composite shape from three geometries. -->
        <GeometryGroup FillRule="EvenOdd">
          <LineGeometry StartPoint="10,10" EndPoint="50,30" />
          <EllipseGeometry Center="40,70" RadiusX="30" RadiusY="30" />
          <RectangleGeometry Rect="30,55 100 30" />

          <!-- Rotate the geometry 45 degrees using the Transform Property. -->
          <GeometryGroup.Transform>
            <RotateTransform CenterX="40" CenterY="70" Angle="45" />
          </GeometryGroup.Transform>
        </GeometryGroup>
      </Path.Data>
    </Path>

  </Canvas>
</Page>

請參閱

概念

幾何概觀

轉換概觀

參考

RotateTransform

Geometry