2 instantiations of TextBoxView
PresentationFramework (2)
System\Windows\Controls\PasswordBox.cs (1)
1158
SetRenderScopeToContentHost(new
TextBoxView
(this));
System\Windows\Controls\TextBox.cs (1)
1124
return new
TextBoxView
(this);
21 references to TextBoxView
PresentationFramework (21)
MS\Internal\Documents\TextBoxLine.cs (2)
43
internal TextBoxLine(
TextBoxView
owner)
609
private readonly
TextBoxView
_owner;
MS\Internal\Documents\TextBoxView.cs (2)
39
MarginProperty.OverrideMetadata(typeof(
TextBoxView
), new FrameworkPropertyMetadata(new Thickness(CaretElement.BidiCaretIndicatorWidth, 0, CaretElement.BidiCaretIndicatorWidth, 0)));
3167
internal TextCache(
TextBoxView
owner)
System\Windows\Controls\PasswordBox.cs (6)
499
((
TextBoxView
)this.RenderScope).Remeasure();
504
((
TextBoxView
)this.RenderScope).Rerender();
940
private void SetRenderScopeToContentHost(
TextBoxView
renderScope)
1240
var
textBoxView = passwordBox?.RenderScope as
TextBoxView
;
1288
private
TextBoxView
_renderScope;
System\Windows\Controls\Primitives\TextBoxBase.cs (4)
1905
TextBoxView
tbv;
1912
if ((tbv = _renderScope as
TextBoxView
) != null)
2213
var
textBoxView = textBoxBase?.RenderScope as
TextBoxView
;
System\Windows\Controls\TextBox.cs (4)
273
TextBoxView
textboxView = (
TextBoxView
)this.RenderScope;
1036
((
TextBoxView
)this.RenderScope).Remeasure();
1041
((
TextBoxView
)this.RenderScope).Rerender();
System\windows\Documents\TextEditorSelection.cs (3)
144
return !(textview is
TextBoxView
);
2462
if (textview is
TextBoxView
) // Extra strict....this could be removed in the future.
2481
if (textview is
TextBoxView
) // Extra strict....this could be removed in the future.