* MoonlightTypeConverter.cs: Convert CacheMode's from strings.
[moon.git] / test / xaml / test-shape-polygon-renderxorigin.xaml
blob7b1930cf24b249776c037600c6cee8731d94de36
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>
7         </Polygon>
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>
14         </Polygon>
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>
21         </Polygon>
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>
28         </Polygon>
30 </Canvas>