6 instantiations of Storyboard
PresentationFramework (4)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9523bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.Storyboard(); };
System\Windows\Markup\KnownTypes.cs (1)
1570case KnownElements.Storyboard: o = new System.Windows.Media.Animation.Storyboard(); break;
System\Windows\Media\Animation\Storyboard.cs (1)
53return new Storyboard();
System\Windows\VisualStateManager.cs (1)
360Storyboard dynamic = new Storyboard();
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (2)
138_mouseEnterStoryboard = new Storyboard(); 140_mouseLeaveStoryboard = new Storyboard();
77 references to Storyboard
PresentationFramework (73)
System\Windows\FrameworkContentElement.cs (4)
416public void BeginStoryboard(Storyboard storyboard) 425public void BeginStoryboard(Storyboard storyboard, HandoffBehavior handoffBehavior) 434public void BeginStoryboard(Storyboard storyboard, HandoffBehavior handoffBehavior, bool isControllable) 466Storyboard.GetComplexPathValue(this, dp, ref newEntry, metadata);
System\Windows\FrameworkElement.cs (4)
435public void BeginStoryboard(Storyboard storyboard) 444public void BeginStoryboard(Storyboard storyboard, HandoffBehavior handoffBehavior) 453public void BeginStoryboard(Storyboard storyboard, HandoffBehavior handoffBehavior, bool isControllable) 1820Storyboard.GetComplexPathValue(this, dp, ref newEntry, metadata);
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
702case 608: t = () => typeof(Storyboard); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (9)
5720Type type = typeof(System.Windows.Media.Animation.Storyboard); 5721DependencyProperty dp = System.Windows.Media.Animation.Storyboard.ChildrenProperty; 5723this.GetXamlType(typeof(System.Windows.Media.Animation.Storyboard)), // DeclaringType 8005Type type = typeof(System.Windows.Media.Animation.Storyboard); 8006DependencyProperty dp = System.Windows.Media.Animation.Storyboard.TargetNameProperty; 8008this.GetXamlType(typeof(System.Windows.Media.Animation.Storyboard)), // DeclaringType 8389Type type = typeof(System.Windows.Media.Animation.Storyboard); 8390DependencyProperty dp = System.Windows.Media.Animation.Storyboard.TargetPropertyProperty; 8392this.GetXamlType(typeof(System.Windows.Media.Animation.Storyboard)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9521typeof(System.Windows.Media.Animation.Storyboard),
System\Windows\Markup\KnownTypes.cs (1)
6162case KnownElements.Storyboard: t = typeof(System.Windows.Media.Animation.Storyboard); break;
System\Windows\Media\Animation\BeginStoryboard.cs (6)
38DependencyProperty.Register( "Storyboard", typeof(Storyboard), typeof(BeginStoryboard) ); 46public Storyboard Storyboard 50return GetValue(StoryboardProperty) as Storyboard; 132Storyboard snapshot = GetValue(StoryboardProperty) as Storyboard; 198Begin( fe, null, Storyboard.Layers.ElementEventTrigger );
System\Windows\Media\Animation\ControllableStoryboardAction.cs (4)
85internal virtual void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard ) 92private Storyboard GetStoryboard( FrameworkElement fe, FrameworkContentElement fce, INameScope nameScope ) 99BeginStoryboard keyedBeginStoryboard = Storyboard.ResolveBeginStoryboardName( BeginStoryboardName, nameScope, fe, fce ); 101Storyboard storyboard = keyedBeginStoryboard.Storyboard;
System\Windows\Media\Animation\PauseStoryboard.cs (1)
24internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\RemoveStoryboard.cs (1)
24internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\ResumeStoryboard.cs (1)
24internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\SeekStoryboard.cs (1)
90internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\SetStoryboardSpeedRatio.cs (1)
48internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\SkipStoryboardToFill.cs (1)
24internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\StopStoryboard.cs (1)
24internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
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\StyleHelper.cs (1)
2536action.Invoke(fe, fce, ownerStyle, frameworkTemplate, Storyboard.Layers.StyleOrTemplateEventTrigger);
System\Windows\TriggerBase.cs (1)
406private static Int64 _nextGlobalLayerRank = System.Windows.Media.Animation.Storyboard.Layers.PropertyTriggerStartLayer;
System\Windows\VisualState.cs (3)
30typeof(Storyboard), 36public Storyboard Storyboard 38get { return (Storyboard)GetValue(StoryboardProperty); }
System\Windows\VisualStateGroup.cs (4)
84internal Collection<Storyboard> CurrentStoryboards 90_currentStoryboards = new Collection<Storyboard>(); 97internal void StartNewThenStopOld(FrameworkElement element, params Storyboard[] newStoryboards) 161private Collection<Storyboard> _currentStoryboards;
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);
System\Windows\VisualTransition.cs (1)
45public Storyboard Storyboard
System.Windows.Controls.Ribbon (4)
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (4)
1328opacityAnimation.SetValue(Storyboard.TargetProperty, target); 1329opacityAnimation.SetValue(Storyboard.TargetPropertyProperty, new PropertyPath("Opacity")); 1380private Storyboard _mouseEnterStoryboard; 1381private Storyboard _mouseLeaveStoryboard;