Implemented interface member:
property
Glyph
Microsoft.Maui.IFontImageSource.Glyph
1 write to Glyph
Microsoft.Maui.Controls.Xaml (1)
MarkupExtensions\FontImageExtension.cs (1)
22 Glyph = Glyph,
5 references to Glyph
Microsoft.Maui.Controls (3)
FontImageSource.cs (3)
10 public override bool IsEmpty => string.IsNullOrEmpty(Glyph); 34 /// <summary>Bindable property for <see cref="Glyph"/>.</summary> 35 public static readonly BindableProperty GlyphProperty = BindableProperty.Create(nameof(Glyph), typeof(string), typeof(FontImageSource), default(string),
Microsoft.Maui.Controls.Compatibility (2)
iOS\Renderers\ImageRenderer.cs (2)
255 var attString = new NSAttributedString(fontsource.Glyph, font: font, foregroundColor: iconcolor.ToPlatform()); 256 var imagesize = ((NSString)fontsource.Glyph).GetSizeUsingAttributes(attString.GetUIKitAttributes(0, out _));