2 instantiations of BeginStoryboard
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1814
bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.
BeginStoryboard
(); };
System\Windows\Markup\KnownTypes.cs (1)
1133
case KnownElements.BeginStoryboard: o = new System.Windows.Media.Animation.
BeginStoryboard
(); break;
16 references to BeginStoryboard
PresentationFramework (16)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
111
case 17: t = () => typeof(
BeginStoryboard
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (7)
1735
Type type = typeof(System.Windows.Media.Animation.
BeginStoryboard
);
1736
DependencyProperty dp = System.Windows.Media.Animation.
BeginStoryboard
.StoryboardProperty;
1738
this.GetXamlType(typeof(System.Windows.Media.Animation.
BeginStoryboard
)), // DeclaringType
7541
Type type = typeof(System.Windows.Media.Animation.
BeginStoryboard
);
7543
this.GetXamlType(typeof(System.Windows.Media.Animation.
BeginStoryboard
)), // DeclaringType
7550
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.
BeginStoryboard
)target).Name = (System.String)value; };
7551
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Media.Animation.
BeginStoryboard
)target).Name; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1812
typeof(System.Windows.Media.Animation.
BeginStoryboard
),
System\Windows\Markup\KnownTypes.cs (2)
1684
return System.Windows.Media.Animation.
BeginStoryboard
.StoryboardProperty;
5571
case KnownElements.BeginStoryboard: t = typeof(System.Windows.Media.Animation.
BeginStoryboard
); break;
System\Windows\Media\Animation\BeginStoryboard.cs (1)
38
DependencyProperty.Register( "Storyboard", typeof(Storyboard), typeof(
BeginStoryboard
) );
System\Windows\Media\Animation\ControllableStoryboardAction.cs (1)
99
BeginStoryboard
keyedBeginStoryboard = Storyboard.ResolveBeginStoryboardName( BeginStoryboardName, nameScope, fe, fce );
System\Windows\Media\Animation\Storyboard.cs (3)
303
internal static
BeginStoryboard
ResolveBeginStoryboardName(
310
BeginStoryboard
beginStoryboard = null;
345
beginStoryboard = namedObject as
BeginStoryboard
;