8 writes to Child
PresentationFramework (8)
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
180inlineContainer.Child = innerContentPresenter;
src\Framework\System\Windows\Documents\FixedElement.cs (1)
232c.Child = im;
src\Framework\System\Windows\Documents\InlineCollection.cs (1)
260implicitInlineUIContainer.Child = uiElement;
src\Framework\System\Windows\Documents\InlineUIContainer.cs (1)
79this.Child = childUIElement;
src\Framework\System\Windows\Documents\TextElement.cs (2)
868inlineContainer.Child = uie; 889implicitInlineUIContainer.Child = uie;
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (1)
1271((InlineUIContainer)uiContainer).Child = null;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
4832bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Documents.InlineUIContainer)target).Child = (System.Windows.UIElement)value; };
8 references to Child
PresentationFramework (8)
src\Framework\System\Windows\Documents\InlineUIContainer.cs (2)
119UIElement child = Child; 167UIElement childElement = this.Child;
src\Framework\System\Windows\Documents\TextElement.cs (2)
863if (inlineContainer.Child != null) 865throw new ArgumentException(SR.Get(SRID.TextSchema_ThisInlineUIContainerHasAChildUIElementAlready, this.GetType().Name, ((InlineUIContainer)this).Child.GetType().Name, value.GetType().Name));
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (3)
561if ((inlineUIContainer == null || !(inlineUIContainer.Child is Image)) && 1268embeddedElement = ((InlineUIContainer)uiContainer).Child as FrameworkElement; 1927if (inlineUIContainer != null && !(inlineUIContainer.Child is Image))
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
4833bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.InlineUIContainer)target).Child; };