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