7 references to ScrollableHeight
PresentationFramework (7)
System\Windows\Controls\ListBox.cs (1)
357
((key == Key.Down && IsLogicalHorizontal && DoubleUtil.GreaterThan(ScrollHost.
ScrollableHeight
, ScrollHost.VerticalOffset))) ||
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1047
if ((e.Delta > 0 && VerticalOffset != 0) /* scrolling up */ || (e.Delta < 0 && VerticalOffset < this.ScrollViewer.
ScrollableHeight
) /* scrolling down */ )
System\Windows\Controls\ScrollViewer.cs (5)
733
/// DependencyProperty for <see cref="
ScrollableHeight
" /> property.
1782
double scrollableLength = (isHorizontal ? ScrollableWidth :
ScrollableHeight
);
2326
double oldScrollableHeight =
ScrollableHeight
;
2385
double scrollableHeight =
ScrollableHeight
;
2386
if (!DoubleUtil.AreClose(oldScrollableHeight,
ScrollableHeight
))