32 instantiations of DoubleAnimation
PresentationCore (1)
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleAnimation.cs (1)
183return new DoubleAnimation();
PresentationFramework (7)
src\Framework\System\Windows\Controls\Primitives\PopupRoot.cs (3)
290DoubleAnimation anim = new DoubleAnimation(visible ? 0.0 : 1.0, visible ? 1.0 : 0.0, duration, FillBehavior.HoldEnd); 323DoubleAnimation xAnim = new DoubleAnimation(animateFromRight ? width : -width, 0.0, duration, FillBehavior.Stop); 328DoubleAnimation yAnim = new DoubleAnimation(animateFromBottom ? height : -height, 0.0, duration, FillBehavior.Stop);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3781bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.Animation.DoubleAnimation(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1238case KnownElements.DoubleAnimation: o = new System.Windows.Media.Animation.DoubleAnimation(); break;
src\Framework\System\Windows\VisualStateManager.cs (2)
482result = new DoubleAnimation() { EasingFunction = easingFunction }; 515DoubleAnimation da = new DoubleAnimation() { To = targetDouble, EasingFunction = easingFunction };
PresentationFramework.Aero (24)
Microsoft\Windows\Themes\BulletChrome.cs (9)
135DoubleAnimation da = new DoubleAnimation(); 186DoubleAnimation da = new DoubleAnimation(1, duration); 276DoubleAnimation da = new DoubleAnimation(); 283da = new DoubleAnimation(1.0, duration); 418DoubleAnimation da = new DoubleAnimation(1.0, duration); 449DoubleAnimation da = new DoubleAnimation(); 517DoubleAnimation da = new DoubleAnimation(1, duration); 522da = new DoubleAnimation(); 528DoubleAnimation da = new DoubleAnimation();
Microsoft\Windows\Themes\ButtonChrome.cs (6)
164DoubleAnimation da = new DoubleAnimation(); 222DoubleAnimation da = new DoubleAnimation(1, duration); 259DoubleAnimation da = new DoubleAnimation(); 311DoubleAnimation da = new DoubleAnimation(1, duration); 318da = new DoubleAnimation(0, duration); 344DoubleAnimation da = new DoubleAnimation();
Microsoft\Windows\Themes\ListBoxChrome.cs (2)
152DoubleAnimation da = new DoubleAnimation(1, duration); 164DoubleAnimation da = new DoubleAnimation();
Microsoft\Windows\Themes\ScrollChrome.cs (7)
124DoubleAnimation da = new DoubleAnimation(1, duration); 127da = new DoubleAnimation(0.63, duration); 132DoubleAnimation da = new DoubleAnimation(1, duration); 136da = new DoubleAnimation(0.63, duration); 139da = new DoubleAnimation(0.5, duration); 161DoubleAnimation da = new DoubleAnimation(); 168DoubleAnimation da = new DoubleAnimation();
33 references to DoubleAnimation
PresentationCore (5)
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleAnimation.cs (5)
61Type typeofThis = typeof(DoubleAnimation); 162public new DoubleAnimation Clone() 164return (DoubleAnimation)base.Clone(); 417DoubleAnimation a = (DoubleAnimation)d;
PresentationFramework (10)
src\Framework\System\Windows\Controls\Primitives\PopupRoot.cs (3)
290DoubleAnimation anim = new DoubleAnimation(visible ? 0.0 : 1.0, visible ? 1.0 : 0.0, duration, FillBehavior.HoldEnd); 323DoubleAnimation xAnim = new DoubleAnimation(animateFromRight ? width : -width, 0.0, duration, FillBehavior.Stop); 328DoubleAnimation yAnim = new DoubleAnimation(animateFromBottom ? height : -height, 0.0, duration, FillBehavior.Stop);
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
261case 169: t = () => typeof(DoubleAnimation); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3779typeof(System.Windows.Media.Animation.DoubleAnimation),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5713case KnownElements.DoubleAnimation: t = typeof(System.Windows.Media.Animation.DoubleAnimation); break;
src\Framework\System\Windows\VisualStateManager.cs (4)
480else if (timeline is DoubleAnimation || timeline is DoubleAnimationUsingKeyFrames) 515DoubleAnimation da = new DoubleAnimation() { To = targetDouble, EasingFunction = easingFunction }; 677DoubleAnimation da = timeline as DoubleAnimation;
PresentationFramework.Aero (18)
Microsoft\Windows\Themes\BulletChrome.cs (7)
135DoubleAnimation da = new DoubleAnimation(); 186DoubleAnimation da = new DoubleAnimation(1, duration); 276DoubleAnimation da = new DoubleAnimation(); 418DoubleAnimation da = new DoubleAnimation(1.0, duration); 449DoubleAnimation da = new DoubleAnimation(); 517DoubleAnimation da = new DoubleAnimation(1, duration); 528DoubleAnimation da = new DoubleAnimation();
Microsoft\Windows\Themes\ButtonChrome.cs (5)
164DoubleAnimation da = new DoubleAnimation(); 222DoubleAnimation da = new DoubleAnimation(1, duration); 259DoubleAnimation da = new DoubleAnimation(); 311DoubleAnimation da = new DoubleAnimation(1, duration); 344DoubleAnimation da = new DoubleAnimation();
Microsoft\Windows\Themes\ListBoxChrome.cs (2)
152DoubleAnimation da = new DoubleAnimation(1, duration); 164DoubleAnimation da = new DoubleAnimation();
Microsoft\Windows\Themes\ScrollChrome.cs (4)
124DoubleAnimation da = new DoubleAnimation(1, duration); 132DoubleAnimation da = new DoubleAnimation(1, duration); 161DoubleAnimation da = new DoubleAnimation(); 168DoubleAnimation da = new DoubleAnimation();