7 references to HoldEnd
PresentationCore (4)
System\Windows\Media\Animation\Clock.cs (2)
2286if (fillBehavior == FillBehavior.HoldEnd) 2634_timeline.FillBehavior == FillBehavior.HoldEnd) // Check for state changing between Filling and Stopped
System\Windows\Media\Animation\Timeline.cs (2)
458FillBehavior.HoldEnd, 1112if (FillBehavior != FillBehavior.HoldEnd)
PresentationFramework (1)
System\Windows\Controls\Primitives\PopupRoot.cs (1)
293DoubleAnimation anim = new DoubleAnimation(visible ? 0.0 : 1.0, visible ? 1.0 : 0.0, duration, FillBehavior.HoldEnd);
Roslyn.VisualStudio.DiagnosticsWindow (2)
PerfMargin\StatusIndicator.xaml.cs (2)
48private static readonly DoubleAnimation s_growAnimation = new DoubleAnimation(1.0, new Duration(TimeSpan.FromSeconds(1.0)), FillBehavior.HoldEnd); 49private static readonly DoubleAnimation s_shrinkAnimation = new DoubleAnimation(0.0, new Duration(TimeSpan.FromSeconds(0.33333)), FillBehavior.HoldEnd);