7 instantiations of InlineUIContainer
PresentationFramework (7)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
174InlineUIContainer inlineContainer = new InlineUIContainer();
System\Windows\Controls\TextBlock.cs (1)
154value = new InlineUIContainer((UIElement)value);
System\Windows\Documents\FixedElement.cs (1)
226InlineUIContainer c = new InlineUIContainer();
System\Windows\Documents\Inline.cs (1)
162return new InlineUIContainer();
System\Windows\Documents\TextRange.cs (1)
1611InlineUIContainer inlineUIContainer = new InlineUIContainer(embeddedElement);
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5414bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.InlineUIContainer(); };
System\Windows\Markup\KnownTypes.cs (1)
1328case KnownElements.InlineUIContainer: o = new System.Windows.Documents.InlineUIContainer(); break;
43 references to InlineUIContainer
PresentationFramework (43)
MS\Internal\PtsHost\RunClient.cs (2)
44_inlineUIContainer = (InlineUIContainer)LogicalTreeHelper.GetParent(element); 186private InlineUIContainer _inlineUIContainer;
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
174InlineUIContainer inlineContainer = new InlineUIContainer();
System\Windows\Controls\TextAdaptor.cs (1)
608if (parent is InlineUIContainer || parent is BlockUIContainer)
System\Windows\Documents\FixedElement.cs (2)
226InlineUIContainer c = new InlineUIContainer(); 426return typeof(InlineUIContainer);
System\Windows\Documents\FlowDocument.cs (2)
55/// <see cref="Run"/>, <see cref="Span"/>, <see cref="InlineUIContainer"/>, <see cref="Floater"/>, <see cref="Figure"/>. 919if (parentOfEmbeddedElement is BlockUIContainer || parentOfEmbeddedElement is InlineUIContainer)
System\Windows\Documents\Inline.cs (1)
160internal static InlineUIContainer CreateImplicitInlineUIContainer(DependencyObject parent)
System\Windows\Documents\InlineCollection.cs (2)
21[ContentWrapper(typeof(InlineUIContainer))] 239InlineUIContainer implicitInlineUIContainer = Run.CreateImplicitInlineUIContainer(this.Parent);
System\Windows\Documents\TextElement.cs (5)
819InlineUIContainer inlineContainer = this as InlineUIContainer; 824throw new ArgumentException(SR.Format(SR.TextSchema_ThisInlineUIContainerHasAChildUIElementAlready, this.GetType().Name, ((InlineUIContainer)this).Child.GetType().Name, value.GetType().Name)); 843if (TextSchema.IsValidChild(/*parent:*/this, /*childType:*/typeof(InlineUIContainer))) 846InlineUIContainer implicitInlineUIContainer = Inline.CreateImplicitInlineUIContainer(this);
System\Windows\Documents\TextPointer.cs (2)
512/// is positioned within <see cref="InlineUIContainer"/> or <see cref="BlockUIContainer"/> 807/// <see cref="InlineUIContainer"/> or <see cref="BlockUIContainer"/>.</para>
System\Windows\Documents\TextPointerBase.cs (3)
339if (elementType == typeof(InlineUIContainer) || elementType == typeof(BlockUIContainer)) 345else if (navigator.ParentType == typeof(InlineUIContainer) || navigator.ParentType == typeof(BlockUIContainer)) 360if (!(elementType == typeof(InlineUIContainer)) && !(elementType == typeof(BlockUIContainer)))
System\Windows\Documents\TextRange.cs (1)
1611InlineUIContainer inlineUIContainer = new InlineUIContainer(embeddedElement);
System\Windows\Documents\TextRangeEdit.cs (1)
1963Invariant.Assert(!(commonAncestor is InlineUIContainer));
System\Windows\Documents\TextRangeEditTables.cs (1)
859if (parent is LineBreak || parent is InlineUIContainer)
System\Windows\Documents\TextRangeSerialization.cs (8)
548if (elementTypeStandardized == typeof(InlineUIContainer) || elementTypeStandardized == typeof(BlockUIContainer)) 552InlineUIContainer inlineUIContainer = textReader.GetAdjacentElement(LogicalDirection.Backward) as InlineUIContainer; 1242else if (uiContainer is InlineUIContainer) 1244embeddedElement = ((InlineUIContainer)uiContainer).Child as FrameworkElement; 1247((InlineUIContainer)uiContainer).Child = null; 1906InlineUIContainer inlineUIContainer = hyperlinkNavigation.GetAdjacentElement(LogicalDirection.Forward) as InlineUIContainer;
System\Windows\Documents\TextSchema.cs (4)
386else if (typeof(InlineUIContainer).IsAssignableFrom(type)) 388return reduceElement ? typeof(Run) : typeof(InlineUIContainer); 500else if (typeof(InlineUIContainer).IsAssignableFrom(type)) 840else if (typeof(InlineUIContainer).IsAssignableFrom(parentType))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
388case 292: t = () => typeof(InlineUIContainer); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (4)
4849Type type = typeof(System.Windows.Documents.InlineUIContainer); 4851this.GetXamlType(typeof(System.Windows.Documents.InlineUIContainer)), // DeclaringType 4857bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Documents.InlineUIContainer)target).Child = (System.Windows.UIElement)value; }; 4858bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.InlineUIContainer)target).Child; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5412typeof(System.Windows.Documents.InlineUIContainer),
System\Windows\Markup\KnownTypes.cs (1)
5846case KnownElements.InlineUIContainer: t = typeof(System.Windows.Documents.InlineUIContainer); break;