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