7 references to ScrollableHeight
PresentationFramework (7)
System\Windows\Controls\ListBox.cs (1)
356((key == Key.Down && IsLogicalHorizontal && DoubleUtil.GreaterThan(ScrollHost.ScrollableHeight, ScrollHost.VerticalOffset))) ||
System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1047if ((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. 1779double scrollableLength = (isHorizontal ? ScrollableWidth : ScrollableHeight); 2323double oldScrollableHeight = ScrollableHeight; 2382double scrollableHeight = ScrollableHeight; 2383if (!DoubleUtil.AreClose(oldScrollableHeight, ScrollableHeight))