6 instantiations of Storyboard
PresentationFramework (4)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9525bamlType.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)
56return new Storyboard();
System\Windows\VisualStateManager.cs (1)
365Storyboard dynamic = new Storyboard();
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (2)
141_mouseEnterStoryboard = new Storyboard(); 143_mouseLeaveStoryboard = new Storyboard();
77 references to Storyboard
PresentationFramework (73)
System\Windows\FrameworkContentElement.cs (4)
428public void BeginStoryboard(Storyboard storyboard) 437public void BeginStoryboard(Storyboard storyboard, HandoffBehavior handoffBehavior) 446public void BeginStoryboard(Storyboard storyboard, HandoffBehavior handoffBehavior, bool isControllable) 478Storyboard.GetComplexPathValue(this, dp, ref newEntry, metadata);
System\Windows\FrameworkElement.cs (4)
446public void BeginStoryboard(Storyboard storyboard) 455public void BeginStoryboard(Storyboard storyboard, HandoffBehavior handoffBehavior) 464public void BeginStoryboard(Storyboard storyboard, HandoffBehavior handoffBehavior, bool isControllable) 1831Storyboard.GetComplexPathValue(this, dp, ref newEntry, metadata);
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
704case 608: t = () => typeof(Storyboard); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (9)
5722Type type = typeof(System.Windows.Media.Animation.Storyboard); 5723DependencyProperty dp = System.Windows.Media.Animation.Storyboard.ChildrenProperty; 5725this.GetXamlType(typeof(System.Windows.Media.Animation.Storyboard)), // DeclaringType 8007Type type = typeof(System.Windows.Media.Animation.Storyboard); 8008DependencyProperty dp = System.Windows.Media.Animation.Storyboard.TargetNameProperty; 8010this.GetXamlType(typeof(System.Windows.Media.Animation.Storyboard)), // DeclaringType 8391Type type = typeof(System.Windows.Media.Animation.Storyboard); 8392DependencyProperty dp = System.Windows.Media.Animation.Storyboard.TargetPropertyProperty; 8394this.GetXamlType(typeof(System.Windows.Media.Animation.Storyboard)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9523typeof(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)
41DependencyProperty.Register( "Storyboard", typeof(Storyboard), typeof(BeginStoryboard) ); 49public Storyboard Storyboard 53return GetValue(StoryboardProperty) as Storyboard; 135Storyboard snapshot = GetValue(StoryboardProperty) as Storyboard; 201Begin( fe, null, Storyboard.Layers.ElementEventTrigger );
System\Windows\Media\Animation\ControllableStoryboardAction.cs (4)
88internal virtual void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard ) 95private Storyboard GetStoryboard( FrameworkElement fe, FrameworkContentElement fce, INameScope nameScope ) 102BeginStoryboard keyedBeginStoryboard = Storyboard.ResolveBeginStoryboardName( BeginStoryboardName, nameScope, fe, fce ); 104Storyboard storyboard = keyedBeginStoryboard.Storyboard;
System\Windows\Media\Animation\PauseStoryboard.cs (1)
26internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\RemoveStoryboard.cs (1)
26internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\ResumeStoryboard.cs (1)
26internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\SeekStoryboard.cs (1)
91internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\SetStoryboardSpeedRatio.cs (1)
49internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\SkipStoryboardToFill.cs (1)
26internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
System\Windows\Media\Animation\StopStoryboard.cs (1)
26internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
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\StyleHelper.cs (1)
2542action.Invoke(fe, fce, ownerStyle, frameworkTemplate, Storyboard.Layers.StyleOrTemplateEventTrigger);
System\Windows\TriggerBase.cs (1)
411private static Int64 _nextGlobalLayerRank = System.Windows.Media.Animation.Storyboard.Layers.PropertyTriggerStartLayer;
System\Windows\VisualState.cs (3)
31typeof(Storyboard), 37public Storyboard Storyboard 39get { return (Storyboard)GetValue(StoryboardProperty); }
System\Windows\VisualStateGroup.cs (4)
88internal Collection<Storyboard> CurrentStoryboards 94_currentStoryboards = new Collection<Storyboard>(); 101internal void StartNewThenStopOld(FrameworkElement element, params Storyboard[] newStoryboards) 165private Collection<Storyboard> _currentStoryboards;
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);
System\Windows\VisualTransition.cs (1)
49public Storyboard Storyboard
System.Windows.Controls.Ribbon (4)
Microsoft\Windows\Controls\Ribbon\RibbonGroup.cs (4)
1331opacityAnimation.SetValue(Storyboard.TargetProperty, target); 1332opacityAnimation.SetValue(Storyboard.TargetPropertyProperty, new PropertyPath("Opacity")); 1383private Storyboard _mouseEnterStoryboard; 1384private Storyboard _mouseLeaveStoryboard;