14 instantiations of DoubleAnimationUsingKeyFrames
PresentationCore (1)
System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (1)
118return new DoubleAnimationUsingKeyFrames();
PresentationFramework (3)
System\windows\Documents\CaretElement.cs (1)
912DoubleAnimationUsingKeyFrames blinkAnimation = new DoubleAnimationUsingKeyFrames();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3810bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames(); };
System\Windows\Markup\KnownTypes.cs (1)
1238case KnownElements.DoubleAnimationUsingKeyFrames: o = new System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames(); break;
PresentationFramework.Aero (3)
Microsoft\Windows\Themes\ButtonChrome.cs (2)
134DoubleAnimationUsingKeyFrames daukf = new DoubleAnimationUsingKeyFrames(); 239DoubleAnimationUsingKeyFrames daukf = new DoubleAnimationUsingKeyFrames();
Microsoft\Windows\Themes\ProgressBarHighlightConverter.cs (1)
90DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.Aero2 (3)
Microsoft\Windows\Themes\ButtonChrome.cs (2)
134DoubleAnimationUsingKeyFrames daukf = new DoubleAnimationUsingKeyFrames(); 239DoubleAnimationUsingKeyFrames daukf = new DoubleAnimationUsingKeyFrames();
Microsoft\Windows\Themes\ProgressBarHighlightConverter.cs (1)
90DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.AeroLite (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\ProgressBarBrushConverter.cs (1)
109DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.Classic (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\ProgressBarBrushConverter.cs (1)
109DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.Luna (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\ProgressBarBrushConverter.cs (1)
109DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.Royale (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\ProgressBarBrushConverter.cs (1)
109DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
40 references to DoubleAnimationUsingKeyFrames
PresentationCore (14)
System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (13)
65public new DoubleAnimationUsingKeyFrames Clone() 67return (DoubleAnimationUsingKeyFrames)base.Clone(); 79public new DoubleAnimationUsingKeyFrames CloneCurrentValue() 81return (DoubleAnimationUsingKeyFrames)base.CloneCurrentValue(); 126DoubleAnimationUsingKeyFrames sourceAnimation = (DoubleAnimationUsingKeyFrames) sourceFreezable; 137DoubleAnimationUsingKeyFrames sourceAnimation = (DoubleAnimationUsingKeyFrames) sourceFreezable; 148DoubleAnimationUsingKeyFrames sourceAnimation = (DoubleAnimationUsingKeyFrames) source; 159DoubleAnimationUsingKeyFrames sourceAnimation = (DoubleAnimationUsingKeyFrames) source; 172private void CopyCommon(DoubleAnimationUsingKeyFrames sourceAnimation, bool isCurrentValueClone)
System\Windows\Media\Animation\KeySpline.cs (1)
25/// Example of a key frame animation class: <see cref="System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames">DoubleAnimationUsingKeyFrames</see>.
PresentationFramework (12)
System\windows\Documents\CaretElement.cs (1)
912DoubleAnimationUsingKeyFrames blinkAnimation = new DoubleAnimationUsingKeyFrames();
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
267case 171: t = () => typeof(DoubleAnimationUsingKeyFrames); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (4)
4471Type type = typeof(System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames); 4473this.GetXamlType(typeof(System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames)), // DeclaringType 4479bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames)target).KeyFrames = (System.Windows.Media.Animation.DoubleKeyFrameCollection)value; }; 4480bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames)target).KeyFrames; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3808typeof(System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames),
System\Windows\Markup\KnownTypes.cs (2)
2493case KnownElements.DoubleAnimationUsingKeyFrames: return (o as System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames).KeyFrames; 5725case KnownElements.DoubleAnimationUsingKeyFrames: t = typeof(System.Windows.Media.Animation.DoubleAnimationUsingKeyFrames); break;
System\Windows\VisualStateManager.cs (3)
434else if (timeline is DoubleAnimation || timeline is DoubleAnimationUsingKeyFrames) 626DoubleAnimationUsingKeyFrames dak = timeline as DoubleAnimationUsingKeyFrames;
PresentationFramework.Aero (5)
Microsoft\Windows\Themes\ButtonChrome.cs (4)
134DoubleAnimationUsingKeyFrames daukf = new DoubleAnimationUsingKeyFrames(); 139DoubleAnimationUsingKeyFrames.SetDesiredFrameRate(daukf, 10); 239DoubleAnimationUsingKeyFrames daukf = new DoubleAnimationUsingKeyFrames(); 245DoubleAnimationUsingKeyFrames.SetDesiredFrameRate(daukf, 10);
Microsoft\Windows\Themes\ProgressBarHighlightConverter.cs (1)
90DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.Aero2 (5)
Microsoft\Windows\Themes\ButtonChrome.cs (4)
134DoubleAnimationUsingKeyFrames daukf = new DoubleAnimationUsingKeyFrames(); 139DoubleAnimationUsingKeyFrames.SetDesiredFrameRate(daukf, 10); 239DoubleAnimationUsingKeyFrames daukf = new DoubleAnimationUsingKeyFrames(); 245DoubleAnimationUsingKeyFrames.SetDesiredFrameRate(daukf, 10);
Microsoft\Windows\Themes\ProgressBarHighlightConverter.cs (1)
90DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.AeroLite (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\ProgressBarBrushConverter.cs (1)
109DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.Classic (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\ProgressBarBrushConverter.cs (1)
109DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.Luna (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\ProgressBarBrushConverter.cs (1)
109DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();
PresentationFramework.Royale (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\ProgressBarBrushConverter.cs (1)
109DoubleAnimationUsingKeyFrames animation = new DoubleAnimationUsingKeyFrames();