2 implementations of IsScrolling
PresentationFramework (2)
System\Windows\Controls\Stack.cs (1)
1039
bool IStackMeasure.
IsScrolling
System\Windows\Controls\VirtualizingStackPanel.cs (1)
11603
bool IStackMeasure.
IsScrolling
8 references to IsScrolling
PresentationFramework (8)
System\Windows\Controls\Stack.cs (8)
563
if (measureElement.
IsScrolling
&& measureElement.CanVerticallyScroll) { layoutSlotSize.Height = Double.PositiveInfinity; }
564
firstViewport = (measureElement.
IsScrolling
) ? CoerceOffsetToInteger(scrollData.Offset.X, children.Count) : 0;
570
if (measureElement.
IsScrolling
&& measureElement.CanHorizontallyScroll) { layoutSlotSize.Width = Double.PositiveInfinity; }
571
firstViewport = (measureElement.
IsScrolling
) ? CoerceOffsetToInteger(scrollData.Offset.Y, children.Count) : 0;
606
if (measureElement.
IsScrolling
&& lastViewport == -1 && i >= firstViewport)
619
if (measureElement.
IsScrolling
)
723
if (arrangeElement.
IsScrolling
)
804
Debug.Assert(measureElement.
IsScrolling
);