2 instantiations of BeginStoryboard
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1812bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.BeginStoryboard(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1134case KnownElements.BeginStoryboard: o = new System.Windows.Media.Animation.BeginStoryboard(); break;
16 references to BeginStoryboard
PresentationFramework (16)
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
109case 17: t = () => typeof(BeginStoryboard); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (7)
1729Type type = typeof(System.Windows.Media.Animation.BeginStoryboard); 1730DependencyProperty dp = System.Windows.Media.Animation.BeginStoryboard.StoryboardProperty; 1732this.GetXamlType(typeof(System.Windows.Media.Animation.BeginStoryboard)), // DeclaringType 7501Type type = typeof(System.Windows.Media.Animation.BeginStoryboard); 7503this.GetXamlType(typeof(System.Windows.Media.Animation.BeginStoryboard)), // DeclaringType 7510bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.BeginStoryboard)target).Name = (System.String)value; }; 7511bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Media.Animation.BeginStoryboard)target).Name; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1810typeof(System.Windows.Media.Animation.BeginStoryboard),
src\Framework\System\Windows\Markup\KnownTypes.cs (2)
1685return System.Windows.Media.Animation.BeginStoryboard.StoryboardProperty; 5561case KnownElements.BeginStoryboard: t = typeof(System.Windows.Media.Animation.BeginStoryboard); break;
src\Framework\System\Windows\Media\Animation\BeginStoryboard.cs (1)
40DependencyProperty.Register( "Storyboard", typeof(Storyboard), typeof(BeginStoryboard) );
src\Framework\System\Windows\Media\Animation\ControllableStoryboardAction.cs (1)
100BeginStoryboard keyedBeginStoryboard = Storyboard.ResolveBeginStoryboardName( BeginStoryboardName, nameScope, fe, fce );
src\Framework\System\Windows\Media\Animation\Storyboard.cs (3)
305internal static BeginStoryboard ResolveBeginStoryboardName( 312BeginStoryboard beginStoryboard = null; 347beginStoryboard = namedObject as BeginStoryboard;