I have some trigger in my Windows Phone 7 Silverlight app such as
<Grid x:Name="ContentGrid" Grid.Row="1" Background="Red" Height="100">
<Grid.Triggers>
<EventTrigger RoutedEvent="Loaded">
<BeginStoryboard>
<Storyboard>
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetProperty="Opacity">
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/>
<SplineDoubleKeyFrame KeyTime="00:00:10" Value="1"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Grid.Triggers>
</Grid>
But when Loaded event fires, XamlParseException occurs. I googled a bit, but found nothing.
Any idea to find solution? Thanks.