51 references to RenderScope
PresentationFramework (51)
System\Windows\Controls\Primitives\TextBoxBase.cs (11)
1048
Invariant.Assert(this.
RenderScope
is IScrollInfo);
1051
((IScrollInfo)this.
RenderScope
).MouseWheelUp();
1055
((IScrollInfo)this.
RenderScope
).MouseWheelDown();
1477
GeneralTransform transform = this.TransformToDescendant(this.
RenderScope
);
1481
if (TextEditor.GetTextView(this.
RenderScope
).Validate(point))
1483
position = (TextPointer)TextEditor.GetTextView(this.
RenderScope
).GetTextPositionFromPoint(point, snapToText);
1521
if (TextEditor.GetTextView(this.
RenderScope
).Validate(position))
1524
rect = TextEditor.GetTextView(this.
RenderScope
).GetRectangleFromTextPosition(position);
1528
GeneralTransform transform = this.TransformToDescendant(this.
RenderScope
);
1604
Visual visual = this.
RenderScope
;
2133
var textBoxView = textBoxBase?.
RenderScope
as TextBoxView;
System\Windows\Controls\RichTextBox.cs (7)
202
if (this.
RenderScope
== null)
409
UIElement renderScope = this.
RenderScope
;
759
if (this.
RenderScope
== null)
778
this.
RenderScope
.ClearValue(FlowDocumentView.WidthProperty);
781
this.
RenderScope
.ClearValue(FrameworkElement.HorizontalAlignmentProperty);
787
if (this.
RenderScope
.HorizontalAlignment != HorizontalAlignment.Stretch)
789
this.
RenderScope
.HorizontalAlignment = HorizontalAlignment.Stretch;
System\Windows\Controls\TextBox.cs (33)
202
if (this.
RenderScope
== null)
230
if (this.
RenderScope
== null)
254
if (this.
RenderScope
== null)
267
TextBoxView textboxView = (TextBoxView)this.
RenderScope
;
285
if (this.
RenderScope
== null)
316
if (this.
RenderScope
== null)
338
if (this.
RenderScope
== null)
343
height = ((IScrollInfo)this.
RenderScope
).ExtentHeight;
361
if (this.
RenderScope
== null)
373
this.
RenderScope
.BringIntoView(rect);
389
if (this.
RenderScope
== null)
907
if (this.
RenderScope
== null)
1017
if (this.
RenderScope
!= null)
1030
((TextBoxView)this.
RenderScope
).Remeasure();
1035
((TextBoxView)this.
RenderScope
).Rerender();
1138
if (this.
RenderScope
== null)
1405
if (this.
RenderScope
== null)
1426
if (this.
RenderScope
== null)
1440
if (TextEditor.GetTextView(this.
RenderScope
).Validate(point))
1442
textPointer = (TextPointer)TextEditor.GetTextView(this.
RenderScope
).GetTextPositionFromPoint(point, /* snap to text */ true);
1443
textPointer = (TextPointer)TextEditor.GetTextView(this.
RenderScope
).GetLineRange(textPointer).Start.CreatePointer(textPointer.LogicalDirection);
1455
if (this.
RenderScope
== null)
1469
if (TextEditor.GetTextView(this.
RenderScope
).Validate(point))
1471
textPointer = (TextPointer)TextEditor.GetTextView(this.
RenderScope
).GetTextPositionFromPoint(point, /* snap to text */ true);
1472
textPointer = (TextPointer)TextEditor.GetTextView(this.
RenderScope
).GetLineRange(textPointer).End.CreatePointer(textPointer.LogicalDirection);
1797
if (this.
RenderScope
== null)
1835
if (this.
RenderScope
== null)
1844
RenderScope
.ClearValue(MinHeightProperty);
1845
RenderScope
.ClearValue(MaxHeightProperty);
1852
if (MinLines > 1 &&
RenderScope
.MinHeight != value)
1854
RenderScope
.MinHeight = value;
1859
if (MaxLines < Int32.MaxValue &&
RenderScope
.MaxHeight != value)
1861
RenderScope
.MaxHeight = value;