7 instantiations of InlineUIContainer
PresentationFramework (7)
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
166
InlineUIContainer inlineContainer = new
InlineUIContainer
();
System\Windows\Controls\TextBlock.cs (1)
141
value = new
InlineUIContainer
((UIElement)value);
System\Windows\Documents\FixedElement.cs (1)
217
InlineUIContainer c = new
InlineUIContainer
System\Windows\Documents\Inline.cs (1)
161
return new
InlineUIContainer
();
System\Windows\Documents\TextRange.cs (1)
1600
InlineUIContainer inlineUIContainer = new
InlineUIContainer
(embeddedElement);
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5900
DefaultConstructor = delegate () { return new System.Windows.Documents.
InlineUIContainer
(); },
System\Windows\Markup\KnownTypes.cs (1)
1321
case KnownElements.InlineUIContainer: o = new System.Windows.Documents.
InlineUIContainer
(); break;
43 references to InlineUIContainer
PresentationFramework (43)
MS\Internal\PtsHost\RunClient.cs (2)
40
_inlineUIContainer = (
InlineUIContainer
)LogicalTreeHelper.GetParent(element);
182
private
InlineUIContainer
_inlineUIContainer;
System\Windows\Controls\DataGridHyperlinkColumn.cs (1)
166
InlineUIContainer
inlineContainer = new InlineUIContainer();
System\Windows\Controls\TextAdaptor.cs (1)
598
if (parent is
InlineUIContainer
|| parent is BlockUIContainer)
System\Windows\Documents\FixedElement.cs (2)
217
InlineUIContainer
c = new InlineUIContainer
423
return typeof(
InlineUIContainer
);
System\Windows\Documents\FlowDocument.cs (2)
54
/// <see cref="Run"/>, <see cref="Span"/>, <see cref="
InlineUIContainer
"/>, <see cref="Floater"/>, <see cref="Figure"/>.
915
if (parentOfEmbeddedElement is BlockUIContainer || parentOfEmbeddedElement is
InlineUIContainer
)
System\Windows\Documents\Inline.cs (1)
159
internal static
InlineUIContainer
CreateImplicitInlineUIContainer(DependencyObject parent)
System\Windows\Documents\InlineCollection.cs (2)
19
[ContentWrapper(typeof(
InlineUIContainer
))]
236
InlineUIContainer
implicitInlineUIContainer = Run.CreateImplicitInlineUIContainer(this.Parent);
System\Windows\Documents\TextElement.cs (5)
803
InlineUIContainer
inlineContainer = this as
InlineUIContainer
;
808
throw new ArgumentException(SR.Format(SR.TextSchema_ThisInlineUIContainerHasAChildUIElementAlready, this.GetType().Name, ((
InlineUIContainer
)this).Child.GetType().Name, value.GetType().Name));
827
if (TextSchema.IsValidChild(/*parent:*/this, /*childType:*/typeof(
InlineUIContainer
)))
830
InlineUIContainer
implicitInlineUIContainer = Inline.CreateImplicitInlineUIContainer(this);
System\Windows\Documents\TextPointer.cs (2)
506
/// is positioned within <see cref="
InlineUIContainer
"/> or <see cref="BlockUIContainer"/>
801
/// <see cref="
InlineUIContainer
"/> or <see cref="BlockUIContainer"/>.</para>
System\Windows\Documents\TextPointerBase.cs (3)
336
if (elementType == typeof(
InlineUIContainer
) || elementType == typeof(BlockUIContainer))
342
else if (navigator.ParentType == typeof(
InlineUIContainer
) || navigator.ParentType == typeof(BlockUIContainer))
357
if (!(elementType == typeof(
InlineUIContainer
)) && !(elementType == typeof(BlockUIContainer)))
System\Windows\Documents\TextRange.cs (1)
1600
InlineUIContainer
inlineUIContainer = new InlineUIContainer(embeddedElement);
System\Windows\Documents\TextRangeEdit.cs (1)
1960
Invariant.Assert(!(commonAncestor is
InlineUIContainer
));
System\Windows\Documents\TextRangeEditTables.cs (1)
860
if (parent is LineBreak || parent is
InlineUIContainer
)
System\Windows\Documents\TextRangeSerialization.cs (8)
541
if (elementTypeStandardized == typeof(
InlineUIContainer
) || elementTypeStandardized == typeof(BlockUIContainer))
545
InlineUIContainer
inlineUIContainer = textReader.GetAdjacentElement(LogicalDirection.Backward) as
InlineUIContainer
;
1235
else if (uiContainer is
InlineUIContainer
)
1237
embeddedElement = ((
InlineUIContainer
)uiContainer).Child as FrameworkElement;
1240
((
InlineUIContainer
)uiContainer).Child = null;
1899
InlineUIContainer
inlineUIContainer = hyperlinkNavigation.GetAdjacentElement(LogicalDirection.Forward) as
InlineUIContainer
;
System\Windows\Documents\TextSchema.cs (4)
384
else if (typeof(
InlineUIContainer
).IsAssignableFrom(type))
386
return reduceElement ? typeof(Run) : typeof(
InlineUIContainer
);
498
else if (typeof(
InlineUIContainer
).IsAssignableFrom(type))
833
else if (typeof(
InlineUIContainer
).IsAssignableFrom(parentType))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
385
case 292: t = () => typeof(
InlineUIContainer
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (4)
5144
Type type = typeof(System.Windows.Documents.
InlineUIContainer
);
5146
this.GetXamlType(typeof(System.Windows.Documents.
InlineUIContainer
)), // DeclaringType
5153
SetDelegate = delegate (object target, object value) { ((System.Windows.Documents.
InlineUIContainer
)target).Child = (System.Windows.UIElement)value; },
5154
GetDelegate = delegate (object target) { return ((System.Windows.Documents.
InlineUIContainer
)target).Child; }
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5897
typeof(System.Windows.Documents.
InlineUIContainer
),
System\Windows\Markup\KnownTypes.cs (1)
5839
case KnownElements.InlineUIContainer: t = typeof(System.Windows.Documents.
InlineUIContainer
); break;