1 <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2 <Polygon Points="110,110 210,110 210,210 110,210" Stroke="#f00" Fill="#7700" RenderTransformOrigin="0,1"/>
3 <Polygon Points="110,110 210,110 210,210 110,210" Stroke="#00f" Fill="#7007">
4 <Polygon.RenderTransform>
5 <RotateTransform Angle="45"/>
6 </Polygon.RenderTransform>
9 <Polygon Points="210,110 310,110 310,210 210,210" Stroke="#f00" Fill="#7700"/>
10 <Polygon Points="210,110 310,110 310,210 210,210" Stroke="#00f" Fill="#7007">
11 <Polygon.RenderTransform>
12 <RotateTransform Angle="45" CenterX="220" CenterY="20"/>
13 </Polygon.RenderTransform>
16 <Polygon Points="110,210 210,210 210,310 110,310" Stroke="#f00" Fill="#7700"/>
17 <Polygon Points="110,210 210,210 210,310 110,310" Stroke="#00f" Fill="#7007" RenderTransformOrigin="1,1">
18 <Polygon.RenderTransform>
19 <RotateTransform Angle="-45"/>
20 </Polygon.RenderTransform>
23 <Polygon Points="210,210 310,210 310,310 210,310" Stroke="#f00" Fill="#7700"/>
24 <Polygon Points="210,210 310,210 310,310 210,310" Stroke="#00f" Fill="#7007" RenderTransformOrigin="1,1">
25 <Polygon.RenderTransform>
26 <RotateTransform Angle="-45" CenterX="150" CenterY="20"/>
27 </Polygon.RenderTransform>