* MoonlightTypeConverter.cs: Convert CacheMode's from strings.
[moon.git] / test / xaml / test-blending-gradients.xaml
blob7b9ac4a279b68d126fa292661f505c82c4fff975
1 <Canvas
2         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4   Width="200" Height="200">
5   <Rectangle Width="200" Height="200" Fill="#f00" />
6   <Rectangle Width="200" Height="200">
7                 <Rectangle.Fill>
8                         <LinearGradientBrush SpreadMethod="Reflect" StartPoint="0,0" EndPoint="1.0,1.0">
9                                 <LinearGradientBrush.GradientStops>
10                                         <GradientStop Color="#ffff" Offset="0.0" />
11                                         <GradientStop Color="#0fff" Offset="1.0" />
12                                 </LinearGradientBrush.GradientStops>
13                         </LinearGradientBrush>
14                 </Rectangle.Fill>
15         </Rectangle>
16 </Canvas>