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