You can use the following code to find your StoryBoard:
private string GetStoryBoardNameByHashCode(int hashCode)
{
foreach (DictionaryEntry resource in Resources)
{
if (resource.Value is Storyboard)
{
if (resource.GetHashCode() == hashCode)
return ((Storyboard) resource.Value).Name;
}
}
return String.Empty;
}
Run this method:
string storyBoardName = GetStoryBoardNameByHashCode(65981734);
This should be able to get the StoryBoard-Name using a HashCode (if you want to get the specified StoryBoard, you can also return it). Keep in mind that the ResourceDictionary is here in the Window area. So, if the StoryBoards are in the ResourceDictionary of the application (App.xaml), change the "Resources" to:
Application.Current.Resources
There may be an alternative way to get all the resources of a WPF application, not just local or Application-scope, but didn't consider it. Hope this code allows you to find your problem.
Here's a sample , just in case you need it!