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