* MoonlightTypeConverter.cs: Convert CacheMode's from strings.
[moon.git] / test / xaml / test-cached-glyph-paths.xaml
blob80a7f4bd31414b37af855cf646a44bf7f622188d
1 <Canvas xmlns="http://schemas.microsoft.com/client/2007"
2         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
3         Width="320" Height="240"
4         Background="White">
5   <Canvas.RenderTransform>
6     <ScaleTransform x:Name="Scaler" CenterX="320" ScaleX="0" />
7   </Canvas.RenderTransform>
8   <Canvas.Triggers>
9     <EventTrigger RoutedEvent="Canvas.Loaded">
10       <BeginStoryboard>
11         <Storyboard x:Name="Movement">
12           <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Scaler" Storyboard.TargetProperty="ScaleX">
13             <SplineDoubleKeyFrame KeyTime="00:00:1" Value="0"/>
14             <SplineDoubleKeyFrame KeyTime="00:00:4" Value="1"/>
15           </DoubleAnimationUsingKeyFrames>
16         </Storyboard>
17       </BeginStoryboard>
18     </EventTrigger>
19   </Canvas.Triggers>
20   <Glyphs Canvas.Left="60" Canvas.Top="100" FontUri="arialbd.ttf" FontRenderingEmSize="18" Fill="Black" UnicodeString="Moonlight in 21 Days" />
21 </Canvas>