13 references to ScrollViewer
PresentationFramework (13)
System\Windows\Automation\Peers\PasswordBoxAutomationPeer.cs (2)
70if (owner.ScrollViewer != null) 72returnValue = owner.ScrollViewer.CreateAutomationPeer();
System\Windows\Controls\PasswordBox.cs (11)
1024this.ScrollViewer?.CanContentScroll = true; 1041this.ScrollViewer?.ScrollToHome(); 1082if (passwordBox.ScrollViewer != null) 1088passwordBox.ScrollViewer.Padding = (Thickness)padding; 1092passwordBox.ScrollViewer.ClearValue(Control.PaddingProperty); 1135if (this.ScrollViewer != null) 1137this.ScrollViewer.HorizontalScrollBarVisibility = ScrollBarVisibility.Hidden; 1138this.ScrollViewer.VerticalScrollBarVisibility = ScrollBarVisibility.Disabled; 1139this.ScrollViewer.Focusable = false; 1141if (this.ScrollViewer.Background == null) 1144this.ScrollViewer.Background = Brushes.Transparent;