System\Windows\Media\Animation\Storyboard.cs (9)
36TargetProperty = DependencyProperty.RegisterAttached("Target", typeof(DependencyObject), typeof(Storyboard), targetPropertyMetadata);
63public new Storyboard Clone()
65return (Storyboard)base.Clone();
123DependencyProperty.RegisterAttached("TargetName", typeof(string), typeof(Storyboard));
153DependencyProperty.RegisterAttached("TargetProperty", typeof(PropertyPath), typeof(Storyboard));
1091BeginCommon(containingObject, null, handoffBehavior, isControllable, Storyboard.Layers.Code );
1123BeginCommon(containingObject, frameworkTemplate, handoffBehavior, isControllable, Storyboard.Layers.Code );
1188BeginCommon(containingObject, null, handoffBehavior, isControllable, Storyboard.Layers.Code );
1200Int64 layer = Storyboard.Layers.Code;
System\Windows\VisualStateManager.cs (17)
206Storyboard dynamicTransition = GenerateDynamicTransitionAnimations(stateGroupsRoot, group, state, transition);
356private static Storyboard GenerateDynamicTransitionAnimations(FrameworkElement root, VisualStateGroup group, VisualState newState, VisualTransition transition)
359Storyboard dynamic = new Storyboard();
491string targetName = Storyboard.GetTargetName(source);
492DependencyObject target = Storyboard.GetTarget(source);
493PropertyPath path = Storyboard.GetTargetProperty(source);
502Storyboard.SetTargetName(destination, targetName);
507Storyboard.SetTarget(destination, target);
512Storyboard.SetTargetProperty(destination, path);
665private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Storyboard storyboard)
674private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Collection<Storyboard> storyboards)
686private static void FlattenTimelines(Storyboard storyboard, Dictionary<TimelineDataToken, Timeline> result)
696Storyboard childStoryboard = child as Storyboard;
713_target = Storyboard.GetTarget(timeline);
714_targetName = Storyboard.GetTargetName(timeline);
715_targetProperty = Storyboard.GetTargetProperty(timeline);