2 implementations of IsScrolling
PresentationFramework (2)
src\Framework\System\Windows\Controls\Stack.cs (1)
1055bool IStackMeasure.IsScrolling
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
11468bool IStackMeasure.IsScrolling
8 references to IsScrolling
PresentationFramework (8)
src\Framework\System\Windows\Controls\Stack.cs (8)
579if (measureElement.IsScrolling && measureElement.CanVerticallyScroll) { layoutSlotSize.Height = Double.PositiveInfinity; } 580firstViewport = (measureElement.IsScrolling) ? CoerceOffsetToInteger(scrollData.Offset.X, children.Count) : 0; 586if (measureElement.IsScrolling && measureElement.CanHorizontallyScroll) { layoutSlotSize.Width = Double.PositiveInfinity; } 587firstViewport = (measureElement.IsScrolling) ? CoerceOffsetToInteger(scrollData.Offset.Y, children.Count) : 0; 622if (measureElement.IsScrolling && lastViewport == -1 && i >= firstViewport) 635if (measureElement.IsScrolling) 739if (arrangeElement.IsScrolling) 820Debug.Assert(measureElement.IsScrolling);