System\Windows\Media\Animation\Storyboard.cs (9)
38TargetProperty = DependencyProperty.RegisterAttached("Target", typeof(DependencyObject), typeof(Storyboard), targetPropertyMetadata);
65public new Storyboard Clone()
67return (Storyboard)base.Clone();
125DependencyProperty.RegisterAttached("TargetName", typeof(string), typeof(Storyboard));
155DependencyProperty.RegisterAttached("TargetProperty", typeof(PropertyPath), typeof(Storyboard));
1093BeginCommon(containingObject, null, handoffBehavior, isControllable, Storyboard.Layers.Code );
1125BeginCommon(containingObject, frameworkTemplate, handoffBehavior, isControllable, Storyboard.Layers.Code );
1190BeginCommon(containingObject, null, handoffBehavior, isControllable, Storyboard.Layers.Code );
1202Int64 layer = Storyboard.Layers.Code;
System\Windows\VisualStateManager.cs (17)
212Storyboard dynamicTransition = GenerateDynamicTransitionAnimations(stateGroupsRoot, group, state, transition);
362private static Storyboard GenerateDynamicTransitionAnimations(FrameworkElement root, VisualStateGroup group, VisualState newState, VisualTransition transition)
365Storyboard dynamic = new Storyboard();
497string targetName = Storyboard.GetTargetName(source);
498DependencyObject target = Storyboard.GetTarget(source);
499PropertyPath path = Storyboard.GetTargetProperty(source);
508Storyboard.SetTargetName(destination, targetName);
513Storyboard.SetTarget(destination, target);
518Storyboard.SetTargetProperty(destination, path);
671private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Storyboard storyboard)
680private static Dictionary<TimelineDataToken, Timeline> FlattenTimelines(Collection<Storyboard> storyboards)
692private static void FlattenTimelines(Storyboard storyboard, Dictionary<TimelineDataToken, Timeline> result)
702Storyboard childStoryboard = child as Storyboard;
719_target = Storyboard.GetTarget(timeline);
720_targetName = Storyboard.GetTargetName(timeline);
721_targetProperty = Storyboard.GetTargetProperty(timeline);