Implemented interface member:
property
this
System.Collections.Generic.IList<T>.this[System.Int32]
3 writes to
PresentationCore (3)
Core\CSharp\System\Windows\Media\Generated\DoubleCollection.cs (1)
332this[index] = Cast(value);
Core\CSharp\System\Windows\UIElement.cs (2)
1013xLines[lastGuideline] = this.RenderSize.Width; 1030yLines[lastGuideline] = this.RenderSize.Height;
11 references to
PresentationCore (3)
Core\CSharp\System\Windows\Media\Generated\DoubleCollection.cs (1)
327return this[index];
Core\CSharp\System\Windows\UIElement.cs (2)
1012if(!DoubleUtil.AreClose(xLines[lastGuideline], this.RenderSize.Width)) 1029if(!DoubleUtil.AreClose(yLines[lastGuideline], this.RenderSize.Height))
PresentationFramework (8)
src\Framework\System\Windows\Controls\Primitives\TickBar.cs (6)
494if (DoubleUtil.LessThanOrClose(ticks[i],Minimum) || DoubleUtil.GreaterThanOrClose(ticks[i],Maximum)) 499double adjustedTick = ticks[i] - Minimum; 601if (DoubleUtil.LessThanOrClose(ticks[i],Minimum) || DoubleUtil.GreaterThanOrClose(ticks[i],Maximum)) 605double adjustedTick = ticks[i] - Minimum;
src\Framework\System\Windows\Controls\Slider.cs (2)
1122double tick = ticks[i]; 1186double tick = ticks[i];