2

このエラーが発生しています

属性 {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>

なぜこれが起こっているのか誰にも分かりますか?

4

1 に答える 1

0

EventTriggerにRoutedEventを設定しますか?

于 2009-09-29T12:53:37.570 に答える