8 writes to Child
PresentationFramework (8)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
171inlineContainer.Child = innerContentPresenter;
System\Windows\Documents\FixedElement.cs (1)
219Child = im
System\Windows\Documents\InlineCollection.cs (1)
249implicitInlineUIContainer.Child = uiElement;
System\Windows\Documents\InlineUIContainer.cs (1)
70this.Child = childUIElement;
System\Windows\Documents\TextElement.cs (2)
811inlineContainer.Child = uie; 832implicitInlineUIContainer.Child = uie;
System\Windows\Documents\TextRangeSerialization.cs (1)
1240((InlineUIContainer)uiContainer).Child = null;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5153SetDelegate = 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)
107UIElement child = Child; 155UIElement childElement = this.Child;
System\Windows\Documents\TextElement.cs (2)
806if (inlineContainer.Child != null) 808throw new ArgumentException(SR.Format(SR.TextSchema_ThisInlineUIContainerHasAChildUIElementAlready, this.GetType().Name, ((InlineUIContainer)this).Child.GetType().Name, value.GetType().Name));
System\Windows\Documents\TextRangeSerialization.cs (3)
548if ((inlineUIContainer == null || !(inlineUIContainer.Child is Image)) && 1237embeddedElement = ((InlineUIContainer)uiContainer).Child as FrameworkElement; 1900if (inlineUIContainer != null && !(inlineUIContainer.Child is Image))
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5154GetDelegate = delegate (object target) { return ((System.Windows.Documents.InlineUIContainer)target).Child; }