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); 1133if (this.ScrollViewer != null) 1135this.ScrollViewer.HorizontalScrollBarVisibility = ScrollBarVisibility.Hidden; 1136this.ScrollViewer.VerticalScrollBarVisibility = ScrollBarVisibility.Disabled; 1137this.ScrollViewer.Focusable = false; 1139if (this.ScrollViewer.Background == null) 1142this.ScrollViewer.Background = Brushes.Transparent;