21 references to AnimationCycle
System.Windows.Forms (21)
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\ButtonBackColorAnimator.cs (2)
57protected override (int animationDuration, AnimationCycle animationCycle) OnAnimationStarted() 60return (AnimationDuration, AnimationCycle.Once);
System\Windows\Forms\Rendering\Animation\AnimatedControlRenderer.cs (2)
66(int animationDuration, AnimationCycle animationCycle) = OnAnimationStarted(); 101protected abstract (int animationDuration, AnimationCycle animationCycle) OnAnimationStarted();
System\Windows\Forms\Rendering\Animation\AnimatedFocusIndicatorRenderer.cs (2)
134protected override (int animationDuration, AnimationCycle animationCycle) OnAnimationStarted() 137return (AnimationDurationMilliseconds, AnimationCycle.Once);
System\Windows\Forms\Rendering\Animation\AnimationManager.AnimationRendererItem.cs (2)
13public AnimationRendererItem(AnimatedControlRenderer renderer, int animationDuration, AnimationCycle animationCycle) 23public AnimationCycle AnimationCycle { get; set; }
System\Windows\Forms\Rendering\Animation\AnimationManager.cs (5)
89AnimationCycle animationCycle) 185case AnimationCycle.Once: 189case AnimationCycle.Loop: 195case AnimationCycle.Bounce: 225AnimationCycle animationCycle)
System\Windows\Forms\Rendering\Button\AnimatedPopupButtonRenderer.cs (2)
69protected override (int animationDuration, AnimationCycle animationCycle) OnAnimationStarted() 70=> (AnimationDurationMilliseconds, AnimationCycle.Once);
System\Windows\Forms\Rendering\CheckBox\AnimatedCheckGlyphRenderer.cs (2)
191protected override (int animationDuration, AnimationCycle animationCycle) OnAnimationStarted() 198return (AnimationDuration, AnimationCycle.Once);
System\Windows\Forms\Rendering\CheckBox\AnimatedToggleSwitchRenderer.cs (2)
53protected override (int animationDuration, AnimationCycle animationCycle) OnAnimationStarted() 64return (AnimationDuration, AnimationCycle.Once);
System\Windows\Forms\Rendering\RadioButton\AnimatedRadioGlyphRenderer.cs (2)
200protected override (int animationDuration, AnimationCycle animationCycle) OnAnimationStarted() 206return (AnimationDuration, AnimationCycle.Once);