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