14 references to ScrollViewer
PresentationFramework (14)
System\Windows\Automation\Peers\PasswordBoxAutomationPeer.cs (2)
70
if (owner.
ScrollViewer
!= null)
72
returnValue = owner.
ScrollViewer
.CreateAutomationPeer();
System\Windows\Controls\PasswordBox.cs (12)
1024
if (this.
ScrollViewer
!= null)
1026
this.
ScrollViewer
.CanContentScroll = true;
1044
this.
ScrollViewer
?.ScrollToHome();
1085
if (passwordBox.
ScrollViewer
!= null)
1091
passwordBox.
ScrollViewer
.Padding = (Thickness)padding;
1095
passwordBox.
ScrollViewer
.ClearValue(Control.PaddingProperty);
1138
if (this.
ScrollViewer
!= null)
1140
this.
ScrollViewer
.HorizontalScrollBarVisibility = ScrollBarVisibility.Hidden;
1141
this.
ScrollViewer
.VerticalScrollBarVisibility = ScrollBarVisibility.Disabled;
1142
this.
ScrollViewer
.Focusable = false;
1144
if (this.
ScrollViewer
.Background == null)
1147
this.
ScrollViewer
.Background = Brushes.Transparent;