9 references to Count
PresentationCore (6)
System\Windows\Media\Animation\Clock.cs (5)
1973Double repeatCount = repeatBehavior.Count; 2067double scalingFactor = repeatBehavior.Count; 2488if (repeatBehavior.Count == 0) // This clause avoids multiplying an infinite duration by zero 2501double scalingFactor = repeatBehavior.Count / _appliedSpeedRatio; 2515double presentAndFutureIterations = repeatBehavior.Count;
System\Windows\Media\Animation\RepeatBehaviorConverter.cs (1)
132return 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);