Reputation: 427
I have some storyboards defined in a <Window.Resources>
tag in Xaml, and I wanna use them on a number of UIElement objects, so I think somehow I have to keep resetting the storyboard everything I retrieve it since it may have been used before, what's the right way to do this? Do I call MyStoryBoard.clone()
everything I pull it out from the resources? Or should I call MyStoryBoard.GetAsFrozen()
? Is there a better way to do this? What's the standard practice?
Upvotes: 0
Views: 508