* MoonlightTypeConverter.cs: Convert CacheMode's from strings.
[moon.git] / test / xaml / test-crash-gracefull-prop-resolving.xaml
blob97fc1ed2d6bd010556aa2ad8e11857331b490c97
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="100">
5         <Ellipse x:Name="ball" Fill="LightGray" Width="50" Height="50" Canvas.Left="25" Canvas.Top="25">
6         <Ellipse.Triggers>
7                 <EventTrigger RoutedEvent="Ellipse.Loaded">
8                         <BeginStoryboard>
9                                 <Storyboard x:Name="animation">
10                                         <DoubleAnimationUsingKeyFrames
11                                                 Storyboard.TargetName="ball"
12                                                 Storyboard.TargetProperty="(Canvas.Opacity)">
13                                                         <SplineDoubleKeyFrame Value="0.0" KeyTime="0:0:1" KeySpline="0.0,0.3 0.7,1.0" />
14                                         </DoubleAnimationUsingKeyFrames>
15                                 </Storyboard>
16                         </BeginStoryboard>
17                 </EventTrigger>
18         </Ellipse.Triggers>
19         </Ellipse>
20 </Canvas>