* MoonlightTypeConverter.cs: Convert CacheMode's from strings.
[moon.git] / test / xaml / test-animation-null-defaults-double.xaml
blobc1528cbbdb573fa7a9b2cd1c1c3c03650318b4a7
1 <Canvas
2         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4         Width="100" Height="200">
5         <Rectangle Fill="Black" Width="50" Height="150" Canvas.Left="25" Canvas.Top="25">
6         <Rectangle.RenderTransform>
7                 <TransformGroup>
8                         <ScaleTransform x:Name="transform" ScaleX="1" ScaleY="1" CenterX="0" CenterY="0"/>
9                 </TransformGroup>
10         </Rectangle.RenderTransform>
11         <Rectangle.Triggers>
12                 <EventTrigger RoutedEvent="Rectangle.Loaded">
13                         <BeginStoryboard>
14                                 <Storyboard Duration="0:0:2">
15                                         <DoubleAnimationUsingKeyFrames Storyboard.TargetName="transform" Storyboard.TargetProperty="ScaleY">
16                                                 <SplineDoubleKeyFrame KeyTime="0:0:2"/>
17                                         </DoubleAnimationUsingKeyFrames>
18                                 </Storyboard>
19                         </BeginStoryboard>
20                 </EventTrigger>
21         </Rectangle.Triggers>
22         </Rectangle>
23 </Canvas>