如何:变换几何图形
更新:2007 年 11 月
本示例演示如何使用 Transform 属性向 Geometry 对象应用 RotateTransform。
示例
下面的示例使用 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>