4 writes to Child
PresentationFramework (4)
System\Windows\Documents\BlockUIContainer.cs (1)
53this.Child = uiElement;
System\Windows\Documents\TextElement.cs (1)
839blockContainer.Child = uie;
System\Windows\Documents\TextRangeSerialization.cs (1)
1239((BlockUIContainer)uiContainer).Child = null;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
4102bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Documents.BlockUIContainer)target).Child = (System.Windows.UIElement)value; };
12 references to Child
PresentationFramework (12)
MS\Internal\PtsHost\PtsHost.cs (2)
2528if (((BlockUIContainer)paraClient.Paragraph.Element).Child != null) 2531UIElement uiElement = ((BlockUIContainer)paraClient.Paragraph.Element).Child;
MS\Internal\PtsHost\UIElementParagraph.cs (3)
211if (((BlockUIContainer)Element).Child != null) 298if (((BlockUIContainer)Element).Child != null) 453_uiElementIsland = new UIElementIsland(((BlockUIContainer)Element).Child);
System\Windows\Documents\BlockUIContainer.cs (1)
85UIElement child = Child;
System\Windows\Documents\TextElement.cs (2)
834if (blockContainer.Child != null) 836throw new ArgumentException(SR.Format(SR.TextSchema_ThisBlockUIContainerHasAChildUIElementAlready, this.GetType().Name, ((BlockUIContainer)this).Child.GetType().Name, value.GetType().Name));
System\Windows\Documents\TextRangeEdit.cs (1)
880UIElement embeddedElement = ((BlockUIContainer)block).Child;
System\Windows\Documents\TextRangeSerialization.cs (2)
556(blockUIContainer == null || !(blockUIContainer.Child is Image))) 1236embeddedElement = ((BlockUIContainer)uiContainer).Child as FrameworkElement;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
4103bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.BlockUIContainer)target).Child; };