System\Windows\Media\Animation\Storyboard.cs (9)
37TargetProperty = DependencyProperty.RegisterAttached("Target", typeof(DependencyObject), typeof(Storyboard), targetPropertyMetadata);
64public new Storyboard Clone()
66return (Storyboard)base.Clone();
124DependencyProperty.RegisterAttached("TargetName", typeof(string), typeof(Storyboard));
154DependencyProperty.RegisterAttached("TargetProperty", typeof(PropertyPath), typeof(Storyboard));
1092BeginCommon(containingObject, null, handoffBehavior, isControllable, Storyboard.Layers.Code );
1124BeginCommon(containingObject, frameworkTemplate, handoffBehavior, isControllable, Storyboard.Layers.Code );
1189BeginCommon(containingObject, null, handoffBehavior, isControllable, Storyboard.Layers.Code );
1201Int64 layer = Storyboard.Layers.Code;
System\Windows\VisualStateManager.cs (17)
207Storyboard dynamicTransition = GenerateDynamicTransitionAnimations(stateGroupsRoot, group, state, transition);
357private static Storyboard GenerateDynamicTransitionAnimations(FrameworkElement root, VisualStateGroup group, VisualState newState, VisualTransition transition)
360Storyboard dynamic = new Storyboard();
492string targetName = Storyboard.GetTargetName(source);
493DependencyObject target = Storyboard.GetTarget(source);
494PropertyPath path = Storyboard.GetTargetProperty(source);
503Storyboard.SetTargetName(destination, targetName);
508Storyboard.SetTarget(destination, target);
513Storyboard.SetTargetProperty(destination, path);
666private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Storyboard storyboard)
675private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Collection<Storyboard> storyboards)
687private static void FlattenTimelines(Storyboard storyboard, Dictionary<TimelineDataToken, Timeline> result)
697Storyboard childStoryboard = child as Storyboard;
714_target = Storyboard.GetTarget(timeline);
715_targetName = Storyboard.GetTargetName(timeline);
716_targetProperty = Storyboard.GetTargetProperty(timeline);