7 instantiations of InlineUIContainer
PresentationFramework (7)
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
175InlineUIContainer inlineContainer = new InlineUIContainer();
src\Framework\System\Windows\Controls\TextBlock.cs (1)
163value = new InlineUIContainer((UIElement)value);
src\Framework\System\Windows\Documents\FixedElement.cs (1)
231InlineUIContainer c = new InlineUIContainer();
src\Framework\System\Windows\Documents\Inline.cs (1)
167return new InlineUIContainer();
src\Framework\System\Windows\Documents\TextRange.cs (1)
1608InlineUIContainer inlineUIContainer = new InlineUIContainer(embeddedElement);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5410bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.InlineUIContainer(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1329case KnownElements.InlineUIContainer: o = new System.Windows.Documents.InlineUIContainer(); break;
43 references to InlineUIContainer
PresentationFramework (43)
src\Framework\MS\Internal\PtsHost\RunClient.cs (2)
47_inlineUIContainer = (InlineUIContainer)LogicalTreeHelper.GetParent(element); 189private InlineUIContainer _inlineUIContainer;
src\Framework\System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
175InlineUIContainer inlineContainer = new InlineUIContainer();
src\Framework\System\Windows\Controls\TextAdaptor.cs (1)
592if (parent is InlineUIContainer || parent is BlockUIContainer)
src\Framework\System\Windows\Documents\FixedElement.cs (2)
231InlineUIContainer c = new InlineUIContainer(); 432return typeof(InlineUIContainer);
src\Framework\System\Windows\Documents\FlowDocument.cs (2)
60/// <see cref="Run"/>, <see cref="Span"/>, <see cref="InlineUIContainer"/>, <see cref="Floater"/>, <see cref="Figure"/>. 927if (parentOfEmbeddedElement is BlockUIContainer || parentOfEmbeddedElement is InlineUIContainer)
src\Framework\System\Windows\Documents\Inline.cs (1)
165internal static InlineUIContainer CreateImplicitInlineUIContainer(DependencyObject parent)
src\Framework\System\Windows\Documents\InlineCollection.cs (2)
20[ContentWrapper(typeof(InlineUIContainer))] 247InlineUIContainer implicitInlineUIContainer = Run.CreateImplicitInlineUIContainer(this.Parent);
src\Framework\System\Windows\Documents\TextElement.cs (5)
860InlineUIContainer inlineContainer = this as InlineUIContainer; 865throw new ArgumentException(SR.Get(SRID.TextSchema_ThisInlineUIContainerHasAChildUIElementAlready, this.GetType().Name, ((InlineUIContainer)this).Child.GetType().Name, value.GetType().Name)); 884if (TextSchema.IsValidChild(/*parent:*/this, /*childType:*/typeof(InlineUIContainer))) 887InlineUIContainer implicitInlineUIContainer = Inline.CreateImplicitInlineUIContainer(this);
src\Framework\System\Windows\Documents\TextPointer.cs (2)
523/// is positioned within <see cref="InlineUIContainer"/> or <see cref="BlockUIContainer"/> 818/// <see cref="InlineUIContainer"/> or <see cref="BlockUIContainer"/>.</para>
src\Framework\System\Windows\Documents\TextPointerBase.cs (3)
341if (elementType == typeof(InlineUIContainer) || elementType == typeof(BlockUIContainer)) 347else if (navigator.ParentType == typeof(InlineUIContainer) || navigator.ParentType == typeof(BlockUIContainer)) 362if (!(elementType == typeof(InlineUIContainer)) && !(elementType == typeof(BlockUIContainer)))
src\Framework\System\Windows\Documents\TextRange.cs (1)
1608InlineUIContainer inlineUIContainer = new InlineUIContainer(embeddedElement);
src\Framework\System\Windows\Documents\TextRangeEdit.cs (1)
1965Invariant.Assert(!(commonAncestor is InlineUIContainer));
src\Framework\System\Windows\Documents\TextRangeEditTables.cs (1)
862if (parent is LineBreak || parent is InlineUIContainer)
src\Framework\System\Windows\Documents\TextRangeSerialization.cs (8)
554if (elementTypeStandardized == typeof(InlineUIContainer) || elementTypeStandardized == typeof(BlockUIContainer)) 558InlineUIContainer inlineUIContainer = textReader.GetAdjacentElement(LogicalDirection.Backward) as InlineUIContainer; 1266else if (uiContainer is InlineUIContainer) 1268embeddedElement = ((InlineUIContainer)uiContainer).Child as FrameworkElement; 1271((InlineUIContainer)uiContainer).Child = null; 1926InlineUIContainer inlineUIContainer = hyperlinkNavigation.GetAdjacentElement(LogicalDirection.Forward) as InlineUIContainer;
src\Framework\System\Windows\Documents\TextSchema.cs (4)
388else if (typeof(InlineUIContainer).IsAssignableFrom(type)) 390return reduceElement ? typeof(Run) : typeof(InlineUIContainer); 502else if (typeof(InlineUIContainer).IsAssignableFrom(type)) 842else if (typeof(InlineUIContainer).IsAssignableFrom(parentType))
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
384case 292: t = () => typeof(InlineUIContainer); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (4)
4824Type type = typeof(System.Windows.Documents.InlineUIContainer); 4826this.GetXamlType(typeof(System.Windows.Documents.InlineUIContainer)), // DeclaringType 4832bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Documents.InlineUIContainer)target).Child = (System.Windows.UIElement)value; }; 4833bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Documents.InlineUIContainer)target).Child; };
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5408typeof(System.Windows.Documents.InlineUIContainer),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5836case KnownElements.InlineUIContainer: t = typeof(System.Windows.Documents.InlineUIContainer); break;