66 references to ScrollViewer
PresentationFramework (66)
System\Windows\Automation\Peers\RichTextBoxAutomationPeer.cs (2)
51if (owner.ScrollViewer != null) 53returnValue = owner.ScrollViewer.CreateAutomationPeer();
System\Windows\Automation\Peers\TextBoxAutomationPeer.cs (2)
52if (owner.ScrollViewer != null) 54returnValue = owner.ScrollViewer.CreateAutomationPeer();
System\Windows\Controls\Primitives\TextBoxBase.cs (50)
163if (this.ScrollViewer != null) 166this.ScrollViewer.LineLeft(); 175if (this.ScrollViewer != null) 178this.ScrollViewer.LineRight(); 187if (this.ScrollViewer != null) 190this.ScrollViewer.PageLeft(); 199if (this.ScrollViewer != null) 202this.ScrollViewer.PageRight(); 229if (this.ScrollViewer != null) 232this.ScrollViewer.PageUp(); 241if (this.ScrollViewer != null) 244this.ScrollViewer.PageDown(); 253if (this.ScrollViewer != null) 256this.ScrollViewer.ScrollToHome(); 265if (this.ScrollViewer != null) 268this.ScrollViewer.ScrollToEnd(); 282if (this.ScrollViewer != null) 285this.ScrollViewer.ScrollToHorizontalOffset(offset); 299if (this.ScrollViewer != null) 302this.ScrollViewer.ScrollToVerticalOffset(offset); 561return (this.ScrollViewer != null) ? this.ScrollViewer.ExtentWidth : 0.0; 572return (this.ScrollViewer != null) ? this.ScrollViewer.ExtentHeight : 0.0; 583return (this.ScrollViewer != null) ? this.ScrollViewer.ViewportWidth : 0.0; 594return (this.ScrollViewer != null) ? this.ScrollViewer.ViewportHeight : 0.0; 608return (this.ScrollViewer != null) ? this.ScrollViewer.HorizontalOffset : 0.0; 621return (this.ScrollViewer != null) ? this.ScrollViewer.VerticalOffset : 0.0; 1043if (this.ScrollViewer != null) 1046if ((e.Delta > 0 && VerticalOffset != 0) /* scrolling up */ || (e.Delta < 0 && VerticalOffset < this.ScrollViewer.ScrollableHeight) /* scrolling down */ ) 1553if (this.ScrollViewer != null) 1555this.ScrollViewer.ScrollChanged += new ScrollChangedEventHandler(OnScrollChanged); 1558SetValue(TextEditor.PageHeightProperty, this.ScrollViewer.ViewportHeight); 1561this.ScrollViewer.Focusable = false; 1564this.ScrollViewer.HandlesMouseWheelScrolling = false; 1566if (this.ScrollViewer.Background == null) 1569this.ScrollViewer.Background = Brushes.Transparent; 1585this.ScrollViewer?.LineUp(); 1591this.ScrollViewer?.LineDown(); 1794if (this.ScrollViewer != null) 1796this.ScrollViewer.ScrollChanged -= new ScrollChangedEventHandler(OnScrollChanged); 1819if (this.ScrollViewer != null) 1821this.ScrollViewer.CanContentScroll = true; 2049if (textBox != null && textBox.ScrollViewer != null) 2054textBox.ScrollViewer.ClearValue(e.Property); 2058textBox.ScrollViewer.SetValue(e.Property, value);
System\Windows\Controls\TextBox.cs (12)
1095if (this.ScrollViewer == null) 1174if (this.ScrollViewer != null) 1176ScrollViewer.ScrollToVerticalOffset(VerticalOffset - GetLineHeight()); 1185if (this.ScrollViewer != null) 1187ScrollViewer.ScrollToVerticalOffset(VerticalOffset + GetLineHeight()); 1807this.ScrollViewer.ClearValue(MinHeightProperty); 1808this.ScrollViewer.ClearValue(MaxHeightProperty); 1812double chrome = this.ScrollViewer.ActualHeight - ViewportHeight; 1816if (MinLines > 1 && this.ScrollViewer.MinHeight != value) 1818this.ScrollViewer.MinHeight = value; 1823if (MaxLines < Int32.MaxValue && this.ScrollViewer.MaxHeight != value) 1825this.ScrollViewer.MaxHeight = value;