System\Windows\Media\Animation\Storyboard.cs (9)
35TargetProperty = DependencyProperty.RegisterAttached("Target", typeof(DependencyObject), typeof(Storyboard), targetPropertyMetadata);
62public new Storyboard Clone()
64return (Storyboard)base.Clone();
122DependencyProperty.RegisterAttached("TargetName", typeof(string), typeof(Storyboard));
152DependencyProperty.RegisterAttached("TargetProperty", typeof(PropertyPath), typeof(Storyboard));
1090BeginCommon(containingObject, null, handoffBehavior, isControllable, Storyboard.Layers.Code );
1122BeginCommon(containingObject, frameworkTemplate, handoffBehavior, isControllable, Storyboard.Layers.Code );
1187BeginCommon(containingObject, null, handoffBehavior, isControllable, Storyboard.Layers.Code );
1199Int64 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);