2 instantiations of PasswordBox
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7326bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.PasswordBox(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1440case KnownElements.PasswordBox: o = new System.Windows.Controls.PasswordBox(); break;
52 references to PasswordBox
PresentationFramework (52)
src\Framework\MS\Internal\AppModel\ApplicationProxyInternal.cs (2)
173PasswordBox passwordBox = Keyboard.FocusedElement as PasswordBox;
src\Framework\System\Windows\Automation\Peers\PasswordBoxAutomationPeer.cs (6)
37public PasswordBoxAutomationPeer(PasswordBox owner) : base(owner) 76_textPattern = new TextAdaptor(this, ((PasswordBox)Owner).TextContainer); 83PasswordBox owner = (PasswordBox)Owner; 136PasswordBox owner = (PasswordBox)Owner;
src\Framework\System\Windows\Controls\PasswordBox.cs (32)
61DefaultStyleKeyProperty.OverrideMetadata(typeof(PasswordBox), new FrameworkPropertyMetadata(typeof(PasswordBox))); 62_dType = DependencyObjectType.FromSystemTypeInternal(typeof(PasswordBox)); 66PasswordCharProperty.OverrideMetadata(typeof(PasswordBox), 70Control.PaddingProperty.OverrideMetadata(typeof(PasswordBox), 74NavigationService.NavigationServiceProperty.OverrideMetadata(typeof(PasswordBox), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnParentNavigationServiceChanged))); 76InputMethod.IsInputMethodEnabledProperty.OverrideMetadata(typeof(PasswordBox), 86IsEnabledProperty.OverrideMetadata(typeof(PasswordBox), new UIPropertyMetadata(new PropertyChangedCallback(OnVisualStatePropertyChanged))); 87IsMouseOverPropertyKey.OverrideMetadata(typeof(PasswordBox), new UIPropertyMetadata(new PropertyChangedCallback(OnVisualStatePropertyChanged))); 89TextBoxBase.SelectionBrushProperty.OverrideMetadata(typeof(PasswordBox), 91TextBoxBase.SelectionTextBrushProperty.OverrideMetadata(typeof(PasswordBox), 93TextBoxBase.SelectionOpacityProperty.OverrideMetadata(typeof(PasswordBox), 95TextBoxBase.CaretBrushProperty.OverrideMetadata(typeof(PasswordBox), 249typeof(PasswordBox), // Property owner 279TextBox.MaxLengthProperty.AddOwner(typeof(PasswordBox)); 296TextBoxBase.SelectionBrushProperty.AddOwner(typeof(PasswordBox)); 311TextBoxBase.SelectionTextBrushProperty.AddOwner(typeof(PasswordBox)); 326TextBoxBase.SelectionOpacityProperty.AddOwner(typeof(PasswordBox)); 341TextBoxBase.CaretBrushProperty.AddOwner(typeof(PasswordBox)); 356TextBoxBase.IsSelectionActiveProperty.AddOwner(typeof(PasswordBox)); 370TextBoxBase.IsInactiveSelectionHighlightEnabledProperty.AddOwner(typeof(PasswordBox)); 403typeof(PasswordBox)); // 506FrameworkPropertyMetadata fmetadata = e.Property.GetMetadata(typeof(PasswordBox)) as FrameworkPropertyMetadata; 865TextEditor.RegisterCommandHandlers(typeof(PasswordBox), /*acceptsRichContent:*/false, /*readOnly*/false, /*registerEventListeners*/false); 922PasswordBox passwordBox = (PasswordBox)d; 1130PasswordBox passwordBox = (PasswordBox)d; 1150PasswordBox passwordBox = (PasswordBox)o; 1256PasswordBox passwordBox = (PasswordBox)d;
src\Framework\System\Windows\Controls\PasswordTextContainer.cs (3)
48internal PasswordTextContainer(PasswordBox passwordBox) 583internal PasswordBox PasswordBox 942private readonly PasswordBox _passwordBox;
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (4)
616if (This.UiScope is PasswordBox) 647if (This.UiScope is PasswordBox) 668if (This.UiScope is PasswordBox) 700if (This.UiScope is PasswordBox)
src\Framework\System\windows\Documents\TextEditorDragDrop.cs (1)
114if (_textEditor.UiScope is PasswordBox)
src\Framework\System\Windows\Documents\TextSchema.cs (1)
813typeof(PasswordBox).IsAssignableFrom(parentType))
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
533case 441: t = () => typeof(PasswordBox); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7324typeof(System.Windows.Controls.PasswordBox),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5985case KnownElements.PasswordBox: t = typeof(System.Windows.Controls.PasswordBox); break;