src\Framework\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;
src\Framework\System\Windows\VisualStateManager.cs (17)
239Storyboard dynamicTransition = GenerateDynamicTransitionAnimations(stateGroupsRoot, group, state, transition);
408private static Storyboard GenerateDynamicTransitionAnimations(FrameworkElement root, VisualStateGroup group, VisualState newState, VisualTransition transition)
411Storyboard dynamic = new Storyboard();
543string targetName = Storyboard.GetTargetName(source);
544DependencyObject target = Storyboard.GetTarget(source);
545PropertyPath path = Storyboard.GetTargetProperty(source);
554Storyboard.SetTargetName(destination, targetName);
559Storyboard.SetTarget(destination, target);
564Storyboard.SetTargetProperty(destination, path);
728private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Storyboard storyboard)
737private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Collection<Storyboard> storyboards)
749private static void FlattenTimelines(Storyboard storyboard, Dictionary<TimelineDataToken, Timeline> result)
759Storyboard childStoryboard = child as Storyboard;
776_target = Storyboard.GetTarget(timeline);
777_targetName = Storyboard.GetTargetName(timeline);
778_targetProperty = Storyboard.GetTargetProperty(timeline);