4 writes to Child
PresentationFramework (4)
src\Framework\System\Windows\Documents\BlockUIContainer.cs (1)
56this.Child = uiElement;
src\Framework\System\Windows\Documents\TextElement.cs (1)
880blockContainer.Child = uie;
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (1)
1263((BlockUIContainer)uiContainer).Child = null;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
4077bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Documents.BlockUIContainer)target).Child = (System.Windows.UIElement)value; };
12 references to Child
PresentationFramework (12)
src\Framework\MS\Internal\PtsHost\PtsHost.cs (2)
2654if (((BlockUIContainer)paraClient.Paragraph.Element).Child != null) 2657UIElement uiElement = ((BlockUIContainer)paraClient.Paragraph.Element).Child;
src\Framework\MS\Internal\PtsHost\UIElementParagraph.cs (3)
210if (((BlockUIContainer)Element).Child != null) 297if (((BlockUIContainer)Element).Child != null) 452_uiElementIsland = new UIElementIsland(((BlockUIContainer)Element).Child);
src\Framework\System\Windows\Documents\BlockUIContainer.cs (1)
88UIElement child = Child;
src\Framework\System\Windows\Documents\TextElement.cs (2)
875if (blockContainer.Child != null) 877throw new ArgumentException(SR.Get(SRID.TextSchema_ThisBlockUIContainerHasAChildUIElementAlready, this.GetType().Name, ((BlockUIContainer)this).Child.GetType().Name, value.GetType().Name));
src\Framework\System\Windows\Documents\TextRangeEdit.cs (1)
882UIElement embeddedElement = ((BlockUIContainer)block).Child;
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (2)
562(blockUIContainer == null || !(blockUIContainer.Child is Image))) 1260embeddedElement = ((BlockUIContainer)uiContainer).Child as FrameworkElement;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
4078bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.BlockUIContainer)target).Child; };