このエラーが発生しています
属性 {StaticResource StoryboardIntroAnimation} の値が範囲外です
BeginStoryboard オブジェクトの Storyboard プロパティとして staic リソースを使用しようとすると。マークアップは次のようになります。
<UserControl ...>
<UserControl.Resources>
<Storyboard x:Key="StoryboardIntroAnimation">
...
</Storyboard>
</UserControl.Resources>
<UserControl.Triggers>
<EventTrigger>
<EventTrigger.Actions>
<BeginStoryboard Storyboard="{StaticResource StoryboardIntroAnimation}" />
</EventTrigger.Actions>
</EventTrigger>
</UserControl.Triggers>
...
</UserControl>
なぜこれが起こっているのか誰にも分かりますか?