* MoonlightTypeConverter.cs: Convert CacheMode's from strings.
[moon.git] / test / xaml / test-path-group-torture.xaml
blobf6ae15c3abf6b99042f2744bd485e491b1047774
1 <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2         <Path Fill="#FF0000" Stroke="Green" StrokeThickness="2" Canvas.Top="80">
3                 <Path.Data>
4                         <GeometryGroup FillRule="EvenOdd">
5                                 <RectangleGeometry Rect="20-40 200 200" />
6                                 <LineGeometry StartPoint="10-20" EndPoint="110,
7 -20" />
8                                 <EllipseGeometry Center="50,
10 -30" RadiusX="10" RadiusY="10" />
11                         </GeometryGroup>
12                 </Path.Data>
13         </Path>
14         <Path Fill="#00FF00" Stroke="Blue" StrokeThickness="2" Canvas.Left="50">
15                 <Path.Data>
16                         <GeometryGroup FillRule="EvenOdd">
17                                 <RectangleGeometry Rect="
18    -30,         
19    40                   200
20  200" />
21                                 <LineGeometry StartPoint="-40 , 60" EndPoint="110,60" />
22                                 <EllipseGeometry Center="0,     50" RadiusX="10" RadiusY="10" />
23                         </GeometryGroup>
24                 </Path.Data>
25         </Path>
26         <Path Fill="#0000FF" Stroke="Red" StrokeThickness="2">
27                 <Path.Data>
28                         <GeometryGroup FillRule="EvenOdd">
29                                 <RectangleGeometry Rect="   20+40 200 200" />
30                                 <LineGeometry StartPoint="
31 10,
32 60" EndPoint="110,              60" />
33                                 <EllipseGeometry Center="50,    50" RadiusX="10" RadiusY="10" />
34                         </GeometryGroup>
35                 </Path.Data>
36         </Path>
37 </Canvas>