8 writes to Child
PresentationFramework (8)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
172inlineContainer.Child = innerContentPresenter;
System\Windows\Documents\FixedElement.cs (1)
220Child = im
System\Windows\Documents\InlineCollection.cs (1)
250implicitInlineUIContainer.Child = uiElement;
System\Windows\Documents\InlineUIContainer.cs (1)
77this.Child = childUIElement;
System\Windows\Documents\TextElement.cs (2)
812inlineContainer.Child = uie; 833implicitInlineUIContainer.Child = uie;
System\Windows\Documents\TextRangeSerialization.cs (1)
1241((InlineUIContainer)uiContainer).Child = null;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5154SetDelegate = delegate (object target, object value) { ((System.Windows.Documents.InlineUIContainer)target).Child = (System.Windows.UIElement)value; },
8 references to Child
PresentationFramework (8)
System\Windows\Documents\InlineUIContainer.cs (2)
117UIElement child = Child; 165UIElement childElement = this.Child;
System\Windows\Documents\TextElement.cs (2)
807if (inlineContainer.Child != null) 809throw new ArgumentException(SR.Format(SR.TextSchema_ThisInlineUIContainerHasAChildUIElementAlready, this.GetType().Name, ((InlineUIContainer)this).Child.GetType().Name, value.GetType().Name));
System\Windows\Documents\TextRangeSerialization.cs (3)
549if ((inlineUIContainer == null || !(inlineUIContainer.Child is Image)) && 1238embeddedElement = ((InlineUIContainer)uiContainer).Child as FrameworkElement; 1901if (inlineUIContainer != null && !(inlineUIContainer.Child is Image))
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5155GetDelegate = delegate (object target) { return ((System.Windows.Documents.InlineUIContainer)target).Child; }