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