* MoonlightTypeConverter.cs: Convert CacheMode's from strings.
[moon.git] / test / xaml / test-shape-polyline-renderxorigin.xaml
blobe590a0d00cff70da02db3daccf8630dbe37e6b55
1 <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2         <Polyline Points="110,110 210,110 210,210 110,210" Stroke="#f00" RenderTransformOrigin="0,1"/>
3         <Polyline Points="110,110 210,110 210,210 110,210" Stroke="#00f" >
4            <Polyline.RenderTransform>
5              <RotateTransform Angle="45"/>
6            </Polyline.RenderTransform>
7         </Polyline>
9         <Polyline Points="210,110 310,110 310,210 210,210" Stroke="#f00" />
10         <Polyline Points="210,110 310,110 310,210 210,210" Stroke="#00f">
11            <Polyline.RenderTransform>
12              <RotateTransform Angle="45" CenterX="220" CenterY="20"/>
13            </Polyline.RenderTransform>
14         </Polyline>
16         <Polyline Points="110,210 210,210 210,310 110,310" Stroke="#f00" />
17         <Polyline Points="110,210 210,210 210,310 110,310" Stroke="#00f" RenderTransformOrigin="1,1">
18            <Polyline.RenderTransform>
19              <RotateTransform Angle="-45"/>
20            </Polyline.RenderTransform>
21         </Polyline>
23         <Polyline Points="210,210 310,210 310,310 210,310" Stroke="#f00" />
24         <Polyline Points="210,210 310,210 310,310 210,310" Stroke="#00f" RenderTransformOrigin="1,1">
25            <Polyline.RenderTransform>
26              <RotateTransform Angle="-45" CenterX="150" CenterY="20"/>
27            </Polyline.RenderTransform>
28         </Polyline>
30 </Canvas>