2 instantiations of TextBoxView
PresentationFramework (2)
src\Framework\System\Windows\Controls\PasswordBox.cs (1)
1181
SetRenderScopeToContentHost(new
TextBoxView
(this));
src\Framework\System\Windows\Controls\TextBox.cs (1)
1115
return new
TextBoxView
(this);
21 references to TextBoxView
PresentationFramework (21)
src\Framework\MS\Internal\Documents\TextBoxLine.cs (2)
45
internal TextBoxLine(
TextBoxView
owner)
611
private readonly
TextBoxView
_owner;
src\Framework\MS\Internal\Documents\TextBoxView.cs (2)
41
MarginProperty.OverrideMetadata(typeof(
TextBoxView
), new FrameworkPropertyMetadata(new Thickness(CaretElement.BidiCaretIndicatorWidth, 0, CaretElement.BidiCaretIndicatorWidth, 0)));
3144
internal TextCache(
TextBoxView
owner)
src\Framework\System\Windows\Controls\PasswordBox.cs (6)
515
((
TextBoxView
)this.RenderScope).Remeasure();
520
((
TextBoxView
)this.RenderScope).Rerender();
956
private void SetRenderScopeToContentHost(
TextBoxView
renderScope)
1274
var
textBoxView = passwordBox?.RenderScope as
TextBoxView
;
1322
private
TextBoxView
_renderScope;
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (4)
1936
TextBoxView
tbv;
1943
if ((tbv = _renderScope as
TextBoxView
) != null)
2249
var
textBoxView = textBoxBase?.RenderScope as
TextBoxView
;
src\Framework\System\Windows\Controls\TextBox.cs (4)
290
TextBoxView
textboxView = (
TextBoxView
)this.RenderScope;
1027
((
TextBoxView
)this.RenderScope).Remeasure();
1032
((
TextBoxView
)this.RenderScope).Rerender();
src\Framework\System\windows\Documents\TextEditorSelection.cs (3)
152
return !(textview is
TextBoxView
);
2471
if (textview is
TextBoxView
) // Extra strict....this could be removed in the future.
2490
if (textview is
TextBoxView
) // Extra strict....this could be removed in the future.