Implemented interface member:
property
Color
Microsoft.Maui.IFontImageSource.Color
1 write to Color
Microsoft.Maui.Controls.Xaml (1)
MarkupExtensions\FontImageExtension.cs (1)
23
Color
= Color,
5 references to Color
Microsoft.Maui.Controls (4)
Compatibility\iOS\Extensions\ToolbarItemExtensions.cs (2)
117
if (item.IconImageSource is FontImageSource fontImageSource && fontImageSource.
Color
is not null)
119
TintColor = fontImageSource.
Color
.ToPlatform();
FontImageSource.cs (2)
12
/// <summary>Bindable property for <see cref="
Color
"/>.</summary>
13
public static readonly BindableProperty ColorProperty = BindableProperty.Create(nameof(
Color
), typeof(Color), typeof(FontImageSource), default(Color),
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\ImageRenderer.cs (1)
254
var iconcolor = fontsource.
Color
?? _defaultColor;