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)
1054if ((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. 1788double scrollableLength = (isHorizontal ? ScrollableWidth : ScrollableHeight); 2332double oldScrollableHeight = ScrollableHeight; 2391double scrollableHeight = ScrollableHeight; 2392if (!DoubleUtil.AreClose(oldScrollableHeight, ScrollableHeight))