2 implementations of IsScrolling
PresentationFramework (2)
System\Windows\Controls\Stack.cs (1)
1049
bool IStackMeasure.
IsScrolling
System\Windows\Controls\VirtualizingStackPanel.cs (1)
11606
bool IStackMeasure.
IsScrolling
8 references to IsScrolling
PresentationFramework (8)
System\Windows\Controls\Stack.cs (8)
573
if (measureElement.
IsScrolling
&& measureElement.CanVerticallyScroll) { layoutSlotSize.Height = Double.PositiveInfinity; }
574
firstViewport = (measureElement.
IsScrolling
) ? CoerceOffsetToInteger(scrollData.Offset.X, children.Count) : 0;
580
if (measureElement.
IsScrolling
&& measureElement.CanHorizontallyScroll) { layoutSlotSize.Width = Double.PositiveInfinity; }
581
firstViewport = (measureElement.
IsScrolling
) ? CoerceOffsetToInteger(scrollData.Offset.Y, children.Count) : 0;
616
if (measureElement.
IsScrolling
&& lastViewport == -1 && i >= firstViewport)
629
if (measureElement.
IsScrolling
)
733
if (arrangeElement.
IsScrolling
)
814
Debug.Assert(measureElement.
IsScrolling
);