9 references to Count
PresentationCore (6)
System\Windows\Media\Animation\Clock.cs (5)
1974Double repeatCount = repeatBehavior.Count; 2068double scalingFactor = repeatBehavior.Count; 2489if (repeatBehavior.Count == 0) // This clause avoids multiplying an infinite duration by zero 2502double scalingFactor = repeatBehavior.Count / _appliedSpeedRatio; 2516double presentAndFutureIterations = repeatBehavior.Count;
System\Windows\Media\Animation\RepeatBehaviorConverter.cs (1)
133return new InstanceDescriptor(mi, new object[] { repeatBehavior.Count });
PresentationCore.Tests (3)
System\Windows\Media\Animation\RepeatBehavior.Tests.cs (3)
31Assert.Equal(behavior.Count, count); 100Assert.Throws<InvalidOperationException>(() => behavior.Count); 108Assert.Throws<InvalidOperationException>(() => behavior.Count);