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)
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. 1782double scrollableLength = (isHorizontal ? ScrollableWidth : ScrollableHeight); 2326double oldScrollableHeight = ScrollableHeight; 2385double scrollableHeight = ScrollableHeight; 2386if (!DoubleUtil.AreClose(oldScrollableHeight, ScrollableHeight))