Xamarin.UWP FontImageSource does not get displayed
You may have noticed that if you give an image a FontImageSource, the image does not display properly on the UWP platform. This is probably because the default value of the FontImageSource Color property is white, and you probably want to draw it white. Check if you are giving an explicit value to the Color property. If not, try it.
<Image>
<Image.Source>
<FontImageSource
FontFamily="FontIcons"
Color="Black"
Glyph="?"
Size="25" />
</Image.Source>
</Image>
Tags In
1 Comment
Leave a Reply Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Hi, I am András,
I am a seasoned software engineer from Budapest, Hungary with a strong focus on mobile app development using .NET MAUI and Xamarin.Forms. My expertise also extends to website building for my happy customers and other complex system designing. I am passionate about developing well-organized, maintainable software solutions.
[…] Xamarin.UWP FontImageSource does not get displayed (Andras Toth) […]