19 references to Parent
PresentationFramework (19)
src\Framework\MS\Internal\Documents\ContentHostHelper.cs (1)
54
parent = textContainer.
Parent
;
src\Framework\MS\Internal\PtsHost\StructuralCache.cs (2)
50
Invariant.Assert(textContainer.
Parent
!= null);
247
return _textContainer.
Parent
;
src\Framework\System\Windows\Controls\TextBlock.cs (1)
3712
DependencyObject parent = te.TextContainer.
Parent
;
src\Framework\System\Windows\Documents\DocumentSequenceTextContainer.cs (1)
279
/// <see cref="TextContainer.
Parent
"/>
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
248
/// <see cref="TextContainer.
Parent
"/>
src\Framework\System\Windows\Documents\Run.cs (1)
276
FlowDocument document = run.TextContainer.
Parent
as FlowDocument;
src\Framework\System\Windows\Documents\TextContainer.cs (3)
1762
return this.
Parent
;
3499
return (this.
Parent
!= null) ? this.
Parent
.Dispatcher : null;
src\Framework\System\Windows\Documents\TextPointer.cs (3)
1437
if (this.TextContainer.
Parent
!= null)
1439
Type containerType = this.TextContainer.
Parent
.GetType();
3824
return ((FrameworkElement)_tree.
Parent
);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (4)
596
Invariant.Assert(position.TextContainer.
Parent
== null || TextSchema.IsValidChildOfContainer(position.TextContainer.
Parent
.GetType(), typeof(Paragraph)));
623
Invariant.Assert(position.TextContainer.
Parent
== null);
797
DependencyObject parent = start.TextContainer.
Parent
;
src\Framework\System\Windows\Documents\TextTreeNode.cs (2)
318
parent = ((TextTreeRootNode)node).TextContainer.
Parent
; // This may be null.
361
logicalTreeNode = ((TextTreeRootNode)node).TextContainer.
Parent
;