2 implementations of IsScrolling
PresentationFramework (2)
System\Windows\Controls\Stack.cs (1)
1038
bool IStackMeasure.
IsScrolling
System\Windows\Controls\VirtualizingStackPanel.cs (1)
11578
bool IStackMeasure.
IsScrolling
8 references to IsScrolling
PresentationFramework (8)
System\Windows\Controls\Stack.cs (8)
562
if (measureElement.
IsScrolling
&& measureElement.CanVerticallyScroll) { layoutSlotSize.Height = Double.PositiveInfinity; }
563
firstViewport = (measureElement.
IsScrolling
) ? CoerceOffsetToInteger(scrollData.Offset.X, children.Count) : 0;
569
if (measureElement.
IsScrolling
&& measureElement.CanHorizontallyScroll) { layoutSlotSize.Width = Double.PositiveInfinity; }
570
firstViewport = (measureElement.
IsScrolling
) ? CoerceOffsetToInteger(scrollData.Offset.Y, children.Count) : 0;
605
if (measureElement.
IsScrolling
&& lastViewport == -1 && i >= firstViewport)
618
if (measureElement.
IsScrolling
)
722
if (arrangeElement.
IsScrolling
)
803
Debug.Assert(measureElement.
IsScrolling
);