2 instantiations of TextBoxView
PresentationFramework (2)
System\Windows\Controls\PasswordBox.cs (1)
1134SetRenderScopeToContentHost(new TextBoxView(this));
System\Windows\Controls\TextBox.cs (1)
1118return new TextBoxView(this);
21 references to TextBoxView
PresentationFramework (21)
MS\Internal\Documents\TextBoxLine.cs (2)
35internal TextBoxLine(TextBoxView owner) 601private readonly TextBoxView _owner;
MS\Internal\Documents\TextBoxView.cs (2)
36MarginProperty.OverrideMetadata(typeof(TextBoxView), new FrameworkPropertyMetadata(new Thickness(CaretElement.BidiCaretIndicatorWidth, 0, CaretElement.BidiCaretIndicatorWidth, 0))); 3124internal TextCache(TextBoxView owner)
System\Windows\Controls\PasswordBox.cs (6)
483((TextBoxView)this.RenderScope).Remeasure(); 488((TextBoxView)this.RenderScope).Rerender(); 921private void SetRenderScopeToContentHost(TextBoxView renderScope) 1213var textBoxView = passwordBox?.RenderScope as TextBoxView; 1261private TextBoxView _renderScope;
System\Windows\Controls\Primitives\TextBoxBase.cs (4)
1828TextBoxView tbv; 1835if ((tbv = _renderScope as TextBoxView) != null) 2133var textBoxView = textBoxBase?.RenderScope as TextBoxView;
System\Windows\Controls\TextBox.cs (4)
267TextBoxView textboxView = (TextBoxView)this.RenderScope; 1030((TextBoxView)this.RenderScope).Remeasure(); 1035((TextBoxView)this.RenderScope).Rerender();
System\windows\Documents\TextEditorSelection.cs (3)
128return !(textview is TextBoxView); 2446if (textview is TextBoxView) // Extra strict....this could be removed in the future. 2465if (textview is TextBoxView) // Extra strict....this could be removed in the future.